Redis Config Explain
Redis Config Section redis-cli를 통해서 redis console에 진입 할 경우 info명령어를 통해서 다음 section에 대한 정보를 획득 할 수있다. info server : 기본 정보 clients : client의 접속 정보 memory : 메모리 사용 관련 정보 persistence : RDB와 AOF(Append Only File) 관련 정보 AOF의 경우는 appendonly.aof 파일에 입력/수정/삭제 실행 명령 실행시 마다 기록 (조회 제외) Redis 서버 작동시 FLUSHALL명령을 사용한 경우 해당 파일을 이용해서 DB를 재 구축 할 수 있음 http://redisgate.kr/redis/configuration/persistence.php RDB의 경우..