Best way to search content in Cassandra

2011-10-27 Thread Jean-Nicolas Boulay Desjardins
Normally in SQL I would use "%" operator to get what looks like what I am searching. Example: [...] type = "image/%" It would give me all the rows that have a column type with "image/" in it. So those would show up: image/png image/gif ... Is there anything similar with Cassandra? I am also

Re: Best way to search content in Cassandra

2011-10-28 Thread Konstantin Naryshkin
You can do a column slice for columns between "image/" (the first ASCII string that starts with that sub-string) and "image/~" (the last printable ASCII string that starts with that sub-string). On Thu, Oct 27, 2011 at 21:10, Jean-Nicolas Boulay Desjardins wrote: > Normally in SQL I would use "%"

Re : Best way to search content in Cassandra

2011-10-31 Thread Laurent Aufrechter
to "image-png-Z". Regards. Laurent De : Jean-Nicolas Boulay Desjardins À : user@cassandra.apache.org Envoyé le : Vendredi 28 Octobre 2011 3h10 Objet : Best way to search content in Cassandra Normally in SQL I would use "%" operator to