Substring search in RavenDB

后端 未结 4 1822
广开言路
广开言路 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:26

    You can perform substring search across multiple fields using following approach:

    ( 1 )

    public class IdeaByBodyOrTitle : AbstractIndexCreationTask
    {
        public IdeaByBodyOrTitle()
        {
            Map = ideas => from idea in ideas
                           select new
                               {
                                   idea.Title,
                                   idea.Body
                               };
        }
    }
    

    on this site you can check, that:

    "By default, RavenDB uses a custom analyzer called LowerCaseKeywordAnalyzer for all content. (...) The default values for each field are FieldStorage.No in Stores and FieldIndexing.Default in Indexes."

    So by default, if you check the index terms inside the raven client, it looks following:

    Title                    Body
    ------------------       -----------------
    "the idea title 1"       "the idea body 1"
    "the idea title 2"       "the idea body 2" 
    

    Based on that, wildcard query can be constructed:

    var wildquery = string.Format("*{0}*", QueryParser.Escape(query));
    

    which is then used with the .In and .Where constructions (using OR operator inside):

    var ideas = session.Query()
                       .Where(x => x.Title.In(wildquery) || x.Body.In(wildquery));
    

    ( 2 )

    Alternatively, you can use pure lucene query:

    var ideas = session.Advanced.LuceneQuery()
                       .Where("(Title:" + wildquery + " OR Body:" + wildquery + ")");
    

    ( 3 )

    You can also use .Search expression, but you have to construct your index differently if you want to search across multiple fields:

    public class IdeaByBodyOrTitle : AbstractIndexCreationTask
    {
        public class IdeaSearchResult
        {
            public string Query;
            public Idea Idea;
        }
    
        public IdeaByBodyOrTitle()
        {
            Map = ideas => from idea in ideas
                           select new
                               {
                                   Query = new object[] { idea.Title, idea.Body },
                                   idea
                               };
        }
    }
    
    var result = session.Query()
                        .Search(x => x.Query, wildquery, 
                                escapeQueryOptions: EscapeQueryOptions.AllowAllWildcards,
                                options: SearchOptions.And)
                        .As();
    

    summary:

    Also have in mind that *term* is rather expensive, especially the leading wildcard. In this post you can find more info about it. There is said, that leading wildcard forces lucene to do a full scan on the index and thus can drastically slow down query-performance. Lucene internally stores its indexes (actually the terms of string-fields) sorted alphabetically and "reads" from left to right. That’s the reason why it is fast to do a search for a trailing wildcard and slow for a leading one.

    So alternatively x.Title.StartsWith("something") can be used, but this obviously do not search across all substrings. If you need fast search, you can change the Index option for the fields you want to search on to be Analyzed but it again will not search across all substrings.

    If there is a spacebar inside of the substring query, please check this question for possible solution. For making suggestions check http://architects.dzone.com/articles/how-do-suggestions-ravendb.

提交回复
热议问题