2011/10/24 Sean Cribbs <[email protected]> > This functionality is not currently available, no. You can only query one > index at a time.
Well, perhaps not using that format, but this certainly works: curl http://localhost:8098/solr/products/select?q=price_int:200+AND+category:sports Or, with the Python bindings: import riak client = riak.RiakClient() query = client.search('products', 'price_int:200 AND category:sports') for x in query.run(): print x.get().get_data() -- Soren Hansen | http://linux2go.dk/ Ubuntu Developer | http://www.ubuntu.com/ OpenStack Developer | http://www.openstack.org/ _______________________________________________ riak-users mailing list [email protected] http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com
