是否可以使用Stratio Cassandra Lucene Index进行小写前缀过滤/查询?我无法找到有关此特定用例的文档。
答案 0 :(得分:4)
查询的大小取决于索引期间Lucene text analyzer的使用情况,并且无法在查询时决定。如果要进行不区分大小写的前缀搜索,则应使用带有生成小写术语的分析器的映射器。这些条款将在搜索时编入索引并进行匹配。例如:
CREATE KEYSPACE test
WITH REPLICATION = {'class' : 'SimpleStrategy', 'replication_factor': 1};
USE test;
CREATE TABLE test (
id INT PRIMARY KEY,
body TEXT
);
CREATE CUSTOM INDEX test_index ON test ()
USING 'com.stratio.cassandra.lucene.Index'
WITH OPTIONS = {
'refresh_seconds' : '1',
'schema' : '{
fields : {
body1 : {type :"string", column:"body", case_sensitive:false},
body2 : {type :"string", column:"body", case_sensitive:true}
}
}'
};
INSERT INTO test(id,body) VALUES ( 1, 'foo');
INSERT INTO test(id,body) VALUES ( 2, 'Foo');
INSERT INTO test(id,body) VALUES ( 3, 'bar');
INSERT INTO test(id,body) VALUES ( 4, 'Bar');
SELECT * FROM test WHERE expr(test_index,
'{filter:{type:"prefix", field:"body2", value:"f"}}'); -- Returns foo
SELECT * FROM test WHERE expr(test_index,
'{filter:{type:"prefix", field:"body2", value:"F"}}'); -- Returns Foo
SELECT * FROM test WHERE expr(test_index,
'{filter:{type:"prefix", field:"body1", value:"f"}}'); -- Returns foo and Foo
SELECT * FROM test WHERE expr(test_index,
'{filter:{type:"prefix", field:"body1", value:"F"}}'); -- Returns no results