其他分享
首页 > 其他分享> > @Indexed不使用spring数据cassandra

@Indexed不使用spring数据cassandra

作者:互联网

我正在尝试使用@Indexed使用spring数据cassandra在字段上创建二级索引.但是在查询字段时它会抛出异常在受限制的列上没有辅助索引支持提供的运算符:

模型:

 @Indexed(value = "bar")
 private String bar;

查询:

@Query("select * from foo where bar = ?0 allow filtering")

解决方法:

这是最近修复的问题

https://jira.spring.io/browse/DATACASS-213

看起来升级到最新版本将为您提供您正在寻找的功能.

标签:spring,cassandra,indexed
来源: https://codeday.me/bug/20190710/1427813.html