단어 'FOOBAR'를 포함 된 모든 게시물을 얻을 수 카산드라에서 같은 쿼리를 만드는 방법 카산드라에서 같은 쿼리를 만드는 방법은 무엇입니까? 내 키 스페이스에서
posts = [
#key
'post1': {
# columns and value
'url': 'foobar.com/post1',
'body': 'Currently has client support FOOBAR for the following programming languages..',
},
'post2': {
'url': 'foobar.com/post2',
'body': 'The table with the following table FOOBAR structure...',
},
# ... ,
}
? SQL에서는
SELECT * FROM POST WHERE BODY LIKE '%FOOBAR%'
이지만 Cassandra에서는?
LIKE는 아직 Cassandra에서 지원되지 않습니다. – bitcycle