hi
I want to know if any way cassandra supports wildcard searches or not.
e.g. select KEY,username,password from Users Where username='hello%';
hi
I want to know if any way cassandra supports wildcard searches or not.
e.g. select KEY,username,password from Users Where username='hello%';
I would rather be interested in
select KEY,username,password from Users Where username='%hello%';
select KEY,username,password from Users Where username='*hello*';
As well
No, it doesn't. You will have to use Solr for that.
I can suggest you to take a look at DSE (http://www.datastax.com/products/enterprise) if you are looking for wildcard/fulltext searches, following like gives you the idea of how it works http://www.datastax.com/docs/datastax_enterprise2.0/search/dse_search_start
You must log in to post.