I don't know if it's documented somewhere. Personnally I got the info by following the Cassandra dev blog and reading each new release notes.
In each Cassandra release notes, you have a list of bug fixes but also new features. Just read the corresponding JIRA to get the details. Regards Duy Hai DOAN On Tue, Feb 11, 2014 at 12:18 AM, Jacob Rhoden <jacob.rho...@me.com> wrote: > Perfect, thanks! I wonder if this is documented anywhere? Certainly I have > no idea how to search google using the keyword "in" :D > > String[] words = TagsToArray.tagsToArray(keyword.toLowerCase()); > PreparedStatement p = api.getCassandraSession().prepare("select > log_entry from log_index where keyword in ?"); > session.execute(p.bind(Arrays.asList(words)))); > > Thanks, > Jacob > > On 11 Feb 2014, at 9:55 am, DuyHai Doan <doanduy...@gmail.com> wrote: > > Hello Jacob, > > You can try the bind marker for variadic param (new feature): > > PreparedStatement p = session.prepare("select log_entry from log_index > where keyword *IN* ?"); > session.execute(p.bind(Arrays.asList("keyword1","keyword2",...)); > > Regards > > Duy Hai DOAN > > >