
GUEST
글
nosql/redis 2014. 4. 10. 17:57redis - 시작하기 / Windows
@특징
- data storage server
- in memory & backup disk (Blocking or Non Blocking)
- key/value pair
- value data type : string, hash, list, set, sorted set
- *nix 계열 : 공식지원 (linux 권장)
- windows 계열 : ms에서 porting. (visual studio 10 이상 필요)
@download
- https://github.com/dmajkic/redis/downloads ( another compiled one. )
> redis-2.4.5-win32-win64.zip
압축해제, 설치 끗.
@작동
- 기동
> [INSTALL_DIR]/64bit/redis-server (-h 127.0.0.1 -p 6379)
- 중단
> [INSTALL_DIR]/64bit/redis-cli (-h 127.0.0.1 -p 6379) shutdown
- 설정파일
[INSTALL_DIR]/64bit/redis.conf
# bind 127.0.0.1 // listen할 주소
port 6379 // 기본 port
loglevel verbose // debug | verbose | notice | warning
logfile stdout // default stdout. 콘솔에 출력한다. 파일 지정 가능.
@Reference
http://krams915.blogspot.kr/2012/02/spring-mvc-31-implement-crud-with_3941.html
RECENT COMMENT