Filtering on search indexed columns
On a DataStax Enterprise search node, when a query is filtered on an indexed column the corresponding Solr document is used.
Filtering on indexed columns in queries that do not have the partition key fully defined do not require ALLOW FILTERING
.
The search index now supports CQL operators, such as LIKE
, IS NOT NULL
, range, and =/!=
to filter.
See Native CQL search queries.
Combine filters to form more complex queries:
SELECT * FROM test.test WHERE
title IS NOT NULL AND
collection CONTAINS 'Anaisa Pye'
AND age > 35;
Sort using ORDER BY.