본문 바로가기

전체 글153

mongo db 배열의 개수 확인하기 mongo db 배열의 개수 확인하기 db.accommodations.find( { $where: "this.name.length > 1" } ); / 2016. 3. 28.
mongo db group count 방법 mongo db group count 방법 db.getCollection('product_crawling_queue').aggregate({ $group: { _id: { site_id: "$site_id" }, count: { $sum: 1 } } }) 2016. 3. 22.
LetsEncrypt 를 CentOS/nginx 에 적용한 경험 공유~ CentOS에 Let Encrypt 를 이용하여 nginx 에 무료 SSL 을 적용하자. 필요 준비 사항. Python EPEL 공식 사이트인 (https://letsencrypt.readthedocs.org/en/latest/using.html#letsencrypt-auto) 가보니 CentOS의 경우에는 EPEL 을 먼저 인스톨 하라고 함. > yum install epel-release 설치 소스 다운 로드 > git clone https://github.com/letsencrypt/letsencrypt 의존성 설치 >./letsencrypt-auto —help 설치 >./letsencrypt-auto certonly --rsa-key-size 4096 --email example@example.c.. 2015. 12. 20.
Java String 압축 클래스. 자바 스트링 압축 - Java String compress/decompress 자바로 스트링을 압축하는 방법을 찾고 찾다가 결국 못 찾고 직접 만든다. 보통 String 을 압축하요 byte[] 로 되돌려주는 프로그램은 쉽게 찾을 수 있으나 String 을 압축하여 String 으로 되돌려주는 코드는 찾을 수가 없었다. 그래서 찾은 방법들을 조합하여 하나의 클래스로 만들었다. import java.io.*; import java.util.zip.DeflaterOutputStream; import java.util.zip.InflaterInputStream; /** * Created by kimjinsam on 2015. 12. 7.. */ public class CompressStringUtil { pr.. 2015. 12. 7.