Does Cassandra support like attribute on a string. I feel like based on partition system in cassandra, this type of query is not even supported in cassandra.
If I have model post
CREATE TABLE Post (
title text PRIMARY KEY,
description text,
);
How can I search title and description for a particular string pattern.?
what are options to implement this in cassandra.?
Do I need to pull all key strings using some text analytics API from title and description and store separately in a different table ?