Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试通过缓存的键集查询缓存。
有没有办法将 SqlPredicate 应用于缓存的键?
谢谢
Ignite 支持允许使用缓存条目的键和值与字段一样的特殊关键字。“_key”是键的关键字,而“_val”是值的关键字。
以下示例显示如何根据键值选择数据
QueryCursor<List<?>> cursor = cache.query(new SqlFieldsQuery( "select _val from Person WHERE _key = 12")); List<List<?>> res = cursor.getAll();