Substring search in RavenDB

后端 未结 4 1824
广开言路
广开言路 2021-02-08 10:42

I have a set of objects of type Idea

public class Idea
{
    public string Title { get; set; }
    public string Body { get; set; }
}
4条回答
  •  终归单人心
    2021-02-08 11:31

    This appears to be a duplicate of RavenDB fast substring search

    The answer there, which was not mentioned here, is to use a custom Lucene analyzer called NGram

提交回复
热议问题