Hi,
Can regex be used in cassandra queries / pycassa .
Say I want to fetch all the row keys that have some part of it common
Rowkeys as below:
"business_details".[0]."biz_name"
"business_details".[0]."biz_rank"
"business_details".[1]."biz_name"
"business_details".[1]."biz_rank"
Basically business_details is a list of 2 elements containing biz_name and biz_rank as part of each list element.
So here I want to make "business_details" as part of regex which brings up the entire list. I do not want to use "start" and "end" as the list is grows in future and there would be overhead of remembering the number of list elements.
If there is NO regex feature in cassandra/pycassa ... is there any efficient way of addressing my problem.
Thanks
--
Sam