我的这个查询自从我第一次工作以来就没有改变过:
ISearchResponse<Series> response = await IndexManager.GetClient()
.SearchAsync<Series>(r => r
.Filter(f => f.Term<Role>(t => t.ReleasableTo.First(), Role.Visitor))
.SortDescending(ser => ser.EndDate)
.Size(1));
MyIndexManager.GetClient()
只负责建立与 ElasticSearch 的连接,并确保正确构建索引。其余代码获取可向公众发布的最新文章系列。
在里面IndexManager
我设置了显式索引映射,当我这样做时,我每次都从我的查询中得到结果。代码如下所示:
client.Map<Series>(m => m.Dynamic(DynamicMappingOption.Allow)
.DynamicTemplates(t => t
.Add(a => a.Name("releasableTo").Match("*releasableTo").MatchMappingType("string").Mapping(map => map.String(s => s.Index(FieldIndexOption.NotAnalyzed))))
.Add(a => a.Name("id").Match("*id").MatchMappingType("string").Mapping(map => map.String(s => s.Index(FieldIndexOption.NotAnalyzed))))
.Add(a => a.Name("services").Match("*amPm").MatchMappingType("string").Mapping(map => map.String(s => s.Index(FieldIndexOption.NotAnalyzed)))
.Match("*dayOfWeek").MatchMappingType("string").Mapping(map => map.String(s => s.Index(FieldIndexOption.NotAnalyzed))))
.Add(a => a.Name("urls").Match("*Url").MatchMappingType("string").Mapping(map => map.String(s => s.Index(FieldIndexOption.NotAnalyzed))))
));
虽然一切都很好,但对我们存储的每种类型都这样做并不能很好地扩展。所以我有意识地决定使用属性并以这种方式映射它:
// In IndexManager
client.Map<T>(m => m.MapFromAttributes());
// In the type definition
class Series
{
// ....
[DataMember]
[ElasticProperty(Index = FieldIndexOption.NotAnalyzed, Store = true)]
public HashSet<Role> ReleasableTo { get; set; }
// ....
}
一旦我这样做,我就不再得到结果。当我在 Kibana 中查看我的索引时,我看到我的 'releasableTo' 字段没有被分析并且它被索引了。但是我写的查询不再有效。如果我删除过滤器子句,我会得到结果,但我真的需要它来工作。
我错过了什么?如何让我的查询再次起作用?