В моем пространстве ключей
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...',
},
# ... ,
}
Как создать подобный запрос в Кассандре, чтобы получить все сообщения, содержащие слово 'FOOBAR'?
В SQL это SELECT * FROM POST WHERE BODY LIKE '%FOOBAR%'
, а в Кассандре?