[Cassandra] ttl 설정하기
02 Jul 2019
database
cassandra
spring
cassandra ttl 걸기
table 생성
CREATE TABLE example (
key text PRIMARY KEY,
value int,
);
테스트 데이터 추가
INSERT INTO example (key, value) VALUES ('test', 1);
INSERT INTO example (key, value) VALUES ('test', 2) USING TTL 10;
확인
SELECT * FROM example;
- 총 2건 검색 됨.
- 10초 이후에는
value가 2
인 row는 제거됨.
Spring 에서 사용하기
@Autowired
private CassandraOperations cassandraOperations;
@Test
public void test() {
InsertOptions writeOptions = InsertOptions.builder()
.ttl(10)
.build();
cassandraOperations.insert(TmpEntity.builder().build(), writeOptions);
}
참고자료
- https://stackoverflow.com/questions/40730510/just-set-the-ttl-on-a-row
Related Posts