-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
touch 기능 개발 #487
Comments
이슈 제가 맡아 진행 하겠습니다. |
기본적으로 memcached protocol과 호환을 위해서 @cheesecrust redis에서 특정 item에 대한 expire time을 조작하는 명령으로 어떤 명령을 제공하고 있는지 확인하고 알려주면 좋겠습니다. |
memcached 에서의
redis 에서의 대응되는 명령
하지만 redis 의 만료시간은 key 마다 설정되기 때문에 일반 KV 타입은 모두 정리하자면 redis 에는 key 의 expire time 을 재설정 하는 |
위 용어 기준으로, arcus도 item(key) 단위로 expire time이 설정되고, 개별 element 수준에서 만료 시간을 설정할 수는 없습니다. expire time 재설정
데이터 조회하면서 expire time 재설정
|
alter expire time without fetch item
fix touched success string "OK" to "TOUCHED"
fix expire time to realtime
@cheesecrust |
memcached 프로젝트에는 지정한 키에 대해 expire time을 재설정하는 touch 기능이 존재한다.
이를 ARCUS에도 개발하도록 한다.
만약 키가 존재하지 않는다면 NOT_FOUND를 반환한다.
The text was updated successfully, but these errors were encountered: