Deep Dive into Neo4j 3.5 Full Text Search
<p>In this blog we will go over the Full Text Search capabilities available in the latest major release of Neo4j.</p>
Contrary to our usual blogs, the content will rather focus on the underlying search engine used by Neo4j, that is Apache Lucene in version 5.5.5 .
What exactly is Search ?
Search is an interaction between a user and a search engine. The user has an information need at hand and attempts to satisfy it by providing a search with adequate constraints.
The search engine uses those constraints to collect matching results and return them to the user.
What is a Search Engine ?
A search engine’s purpose is to store, find and retrieve content. The underlying engine used by Neo4j is Apache Lucene, a free and open-source information retrieval software library.
There are some concepts that are key to search engines that will be detailed below.
Document
In search applications, the notion of a Document is central, because Documents are the items being stored, searched and returned. Documents correspond to content such as products in a catalog, content of books, the result of a pdf text extraction or people’s profiles.
A Document contains data fields, typically keys holding data values.
Inverted Index
An inverted index is the search engine’s data structure. Simply put, it maps documents to keywords just like a glossary at the end of a book.
It is composed of two main pieces : a term dictionary and a postings list. The term dictionary is a sorted list of all terms that occur in a given field across the corpus. The term dictionary assigns a unique identifier to each term. The postings list is the mapping between each term (referred by id) and the list of documents in which it appears.
In order to serve relevant results, Lucene adds more data structures and metadata to the index; we will talk about some of them later in this blog. For the impatient, they are: doc frequency, term frequency, term positions, term offsets and so on.
Analysis
The analysis is the process of converting text into smaller and precise units for the sake of searching: the tokens.
The analysis is composed of three steps : character filtering, tokenization and token filtering.
Let’s go over each step and demonstrate end-to-end how we analyze the text
The GraphAware’s fifth year anniversary at the Prague office in Žitná"
.
During the first step, character filtering, the characters of text fields are adjusted or filtered in different ways.
The next step is tokenization. As the name indicates, during this step, raw text is converted into tokens. The most straightforward way to tokenize a text is to split it on whitespaces, but it is rarely the right approach, because you would end up with tokens containing punctuation, such as commas.
Instead, English and most European language texts use the standard tokenizer, which split on word whitespace and punctuation.
The last step is token filtering. Here the tokens are adjusted by adding or removing them or by changing them. For the purpose of normalizing appropriately the tokens from our example, a typical choice would be to lowercase the tokens and remove common words such as ‘the’ and ‘at’ ( usually called stopwords ), and remove the possessive after GraphAware.
Once the analysis is completed, the data is saved into the inverted index as described above.
Searching
Once the index is built, we can search that index using a Query and an IndexSearcher. The IndexSearcher is hidden in the Neo4j implementation, so we will only go over the Query syntax.
The query syntax used is the Apache Lucene Classic Query syntax, let’s go over some examples:
hello
: search for documents containing the term hellotitle: neo4j
: search for documents containing the term neo4j in the title fieldgraph*
: search for documents containing terms starting with graph, such as graph, graphs, graphical, etc.
The human-readable query is parsed by the Lucene’s Query Parser and is then transformed to a concrete implementation of the Query class, for which we need some understanding and examples :
Query implementation | Purpose | Example |
---|---|---|
Term Query | Single term query | neo4j |
PhraseQuery | Match of several terms in sequence, or in near vicinity to each other | “graph database” |
RangeQuery | Matches documents between beginning and ending terms, including or excluding the end points | [A TO Z] {A TO Z} |
WildcardQuery | Regex like query | g*p? , d??abase |
PrefixQuery | Matches all terms beginning with a specified string | algo* |
FuzzyQuery | Levenshtein algorithm for closeness matching | cipher~ |
BooleanQuery | Aggregates other query instances into complex expressions | graph AND “shortest path” |
Full Text Search with Neo4j
We will now see how all of the above is available in Neo4j through dedicated Cypher procedures. To do so, we need to populate our database with some data, in this case, a list of book titles:
LOAD CSV WITH HEADERS FROM "https://bit.ly/fts-books" AS row
CREATE (n:Book {title: row.title, isbn: row.isbn, id: row.id, image: row.small_image_url, authors: row.authors})
Indexing
The first operation to do is to create a fulltext search index, with the help of the following procedure :
CALL db.index.fulltext.createNodeIndex('books', ['Book'], ['title', 'authors'])
The first argument is the name of the index, the second argument is a list of node labels that will be represented as documents in the books index.
The last argument is the list of properties to be replicated as document fields, note that as of now, only text properties are being replicated.
There is an optional fourth argument that takes a configuration map, where you can specify the analyzer to be used. The analyzer is the class that will split the text into tokens, it primarily consist of tokenizers and filters. Different analyzers will have different combinations of tokenizers and filters.
CALL db.index.fulltext.createNodeIndex('books', ['Book'], ['title'], {analyzer: "spanish"})
You can find the list of available analyzers with the following the procedure :
CALL db.index.fulltext.listAvailableAnalyzers
The most commonly used analyzers are
- StandardAnalyzer ( one of the most sophisticated analyzers, it lowercase the text and remove stopwords and punctuation, it can also regonise emails and urls)
- StopAnalyzer ( same as StandardAnalyzer but without the ability to recognise emails and urls)
- KeywordAnalyzer ( tokenize the input as a single token, useful for ids or zipcodes )
You can check the index is created by issuing the :schema
command :
Indexes
ON NODE:Book(title) ONLINE
No constraints
Querying
Now that our books index is created, we can query it and test our full text search queries. Let’s find all books containing the word “secret” in their title :
CALL db.index.fulltext.queryNodes('books', 'secret')
╒══════════════════════════════════════════════════════════════════════╤══════════════════╕
│"node" │"score" │
╞══════════════════════════════════════════════════════════════════════╪══════════════════╡
│{"image":"https://images.gr-assets.com/books/1327873635s/2998.jpg","ti│1.7604600191116333│
│tle":"The Secret Garden","isbn":"517189607","authors":"Frances Hodgson│ │
│ Burnett"} │ │
├──────────────────────────────────────────────────────────────────────┼──────────────────┤
│{"image":"https://images.gr-assets.com/books/1473454532s/37435.jpg","t│1.4083679914474487│
│itle":"The Secret Life of Bees","isbn":"142001740","authors":"Sue Monk│ │
│ Kidd"} │ │
└──────────────────────────────────────────────────────────────────────┴──────────────────┘
As you can see, the result of the procedure is not a list of documents, but a list of nodes instead.
There is a concept we did not cover yet, scoring. Let’s first show some examples of other queries before diving into it.
Let’s now search for secret life
:
CALL db.index.fulltext.queryNodes('books', 'secret life')
╒══════════════════════════════════════════════════════════════════════╤══════════════════╕
│"node" │"score" │
╞══════════════════════════════════════════════════════════════════════╪══════════════════╡
│{"image":"https://images.gr-assets.com/books/1473454532s/37435.jpg","t│1.9917329549789429│
│itle":"The Secret Life of Bees","isbn":"142001740","authors":"Sue Monk│ │
│ Kidd"} │ │
├──────────────────────────────────────────────────────────────────────┼──────────────────┤
│{"image":"https://images.gr-assets.com/books/1320562005s/4214.jpg","ti│0.6224165558815002│
│tle":"Life of Pi","isbn":"770430074","authors":"Yann Martel"} │ │
├──────────────────────────────────────────────────────────────────────┼──────────────────┤
│{"image":"https://images.gr-assets.com/books/1327873635s/2998.jpg","ti│0.6224165558815002│
│tle":"The Secret Garden","isbn":"517189607","authors":"Frances Hodgson│ │
│ Burnett"} │ │
└──────────────────────────────────────────────────────────────────────┴──────────────────┘
As you can see, the second result does not contain all of the search terms. It is because
when the query is parsed, it is understood as a TermsQuery, where each term is handled separately.
To circumvent this, we can force the query to be understood as a PhraseQuery, by enclosing the terms in double quotes :
CALL db.index.fulltext.queryNodes('books', '"secret life"')
╒══════════════════════════════════════════════════════════════════════╤══════════════════╕
│"node" │"score" │
╞══════════════════════════════════════════════════════════════════════╪══════════════════╡
│{"image":"https://images.gr-assets.com/books/1473454532s/37435.jpg","t│2.8167359828948975│
│itle":"The Secret Life of Bees","isbn":"142001740","authors":"Sue Monk│ │
│ Kidd"} │ │
└──────────────────────────────────────────────────────────────────────┴──────────────────┘
We can also search on a specific field :
CALL db.index.fulltext.queryNodes('books', 'authors: rowling')
╒══════════════════════════════════════════════════════════════════════╤══════════════════╕
│"node" │"score" │
╞══════════════════════════════════════════════════════════════════════╪══════════════════╡
│{"image":"https://images.gr-assets.com/books/1474154022s/3.jpg","title│1.7578392028808594│
│":"Harry Potter and the Sorcerer's Stone (Harry Potter, #1)","isbn":"4│ │
│39554934","authors":"J.K. Rowling, Mary GrandPré"} │ │
├──────────────────────────────────────────────────────────────────────┼──────────────────┤
│{"image":"https://images.gr-assets.com/books/1387141547s/2.jpg","title│1.7578392028808594│
│":"Harry Potter and the Order of the Phoenix (Harry Potter, #5)","isbn│ │
│":"439358078","authors":"J.K. Rowling, Mary GrandPré"} │ │
├──────────────────────────────────────────────────────────────────────┼──────────────────┤
│{"image":"https://images.gr-assets.com/books/1474169725s/15881.jpg","t│1.7578392028808594│
│itle":"Harry Potter and the Chamber of Secrets (Harry Potter, #2)","is│ │
│bn":"439064864","authors":"J.K. Rowling, Mary GrandPré"} │ │
├──────────────────────────────────────────────────────────────────────┼──────────────────┤
│{"image":"https://images.gr-assets.com/books/1361482611s/6.jpg","title│1.7578392028808594│
│":"Harry Potter and the Goblet of Fire (Harry Potter, #4)","isbn":"439│ │
│139600","authors":"J.K. Rowling, Mary GrandPré"} │ │
├──────────────────────────────────────────────────────────────────────┼──────────────────┤
│{"image":"https://images.gr-assets.com/books/1474171184s/136251.jpg","│1.7578392028808594│
│title":"Harry Potter and the Deathly Hallows (Harry Potter, #7)","isbn│ │
│":"545010225","authors":"J.K. Rowling, Mary GrandPré"} │ │
├──────────────────────────────────────────────────────────────────────┼──────────────────┤
│{"image":"https://images.gr-assets.com/books/1361039191s/1.jpg","title│1.7578392028808594│
│":"Harry Potter and the Half-Blood Prince (Harry Potter, #6)","isbn":"│ │
│439785960","authors":"J.K. Rowling, Mary GrandPré"} │ │
├──────────────────────────────────────────────────────────────────────┼──────────────────┤
│{"image":"https://images.gr-assets.com/books/1499277281s/5.jpg","title│1.3183794021606445│
│":"Harry Potter and the Prisoner of Azkaban (Harry Potter, #3)","isbn"│ │
│:"043965548X","authors":"J.K. Rowling, Mary GrandPré, Rufus Beck"} │ │
└──────────────────────────────────────────────────────────────────────┴──────────────────┘
Or on more than one field :
CALL db.index.fulltext.queryNodes('books', 'authors: rowling AND title: goblet')
╒══════════════════════════════════════════════════════════════════════╤═════════════════╕
│"node" │"score" │
╞══════════════════════════════════════════════════════════════════════╪═════════════════╡
│{"image":"https://images.gr-assets.com/books/1361482611s/6.jpg","title│2.518252372741699│
│":"Harry Potter and the Goblet of Fire (Harry Potter, #4)","isbn":"439│ │
│139600","authors":"J.K. Rowling, Mary GrandPré"} │ │
└──────────────────────────────────────────────────────────────────────┴─────────────────┘
Fuzziness
The power of Full Text Search is also the ability to retrieve results even if the search query
does not exactly match text in the original corpus.
There are a couple of implementations offering such behaviors, one of them is the FuzzyQuery.
CALL db.index.fulltext.queryNodes('books', 'garde~')
╒══════════════════════════════════════════════════════════════════════╤══════════════════╕
│"node" │"score" │
╞══════════════════════════════════════════════════════════════════════╪══════════════════╡
│{"image":"https://images.gr-assets.com/books/1408303130s/375802.jpg","│1.6505731344223022│
│title":"Ender's Game (Ender's Saga, #1)","isbn":"812550706","authors":│ │
│"Orson Scott Card"} │ │
├──────────────────────────────────────────────────────────────────────┼──────────────────┤
│{"image":"https://images.gr-assets.com/books/1327873635s/2998.jpg","ti│1.5997971296310425│
│tle":"The Secret Garden","isbn":"517189607","authors":"Frances Hodgson│ │
│ Burnett"} │ │
├──────────────────────────────────────────────────────────────────────┼──────────────────┤
│{"image":"https://images.gr-assets.com/books/1327656754s/11.jpg","titl│1.0181047916412354│
│e":"The Hitchhiker's Guide to the Galaxy (Hitchhiker's Guide to the Ga│ │
│laxy, #1)","isbn":"345391802","authors":"Douglas Adams"} │ │
├──────────────────────────────────────────────────────────────────────┼──────────────────┤
│{"image":"https://images.gr-assets.com/books/1439632243s/24178.jpg","t│0.8555957078933716│
│itle":"Charlotte's Web","isbn":"64410935","authors":"E.B. White, Garth│ │
│ Williams, Rosemary Wells"} │ │
├──────────────────────────────────────────────────────────────────────┼──────────────────┤
│{"image":"https://images.gr-assets.com/books/1436732693s/13496.jpg","t│0.5999239683151245│
│itle":"A Game of Thrones (A Song of Ice and Fire, #1)","isbn":"5535884│ │
│86","authors":"George R.R. Martin"} │ │
└──────────────────────────────────────────────────────────────────────┴──────────────────┘
The tilde (~)
allows a FuzzySearch for garde
using the Damarau-Levenshtein distance algorithm. As you can see, some results such as The Hitchhiker's Guide to the Galaxy (Hitchhiker's Guide to the Galaxy, #1
are not really relevant for our search, it is because of the default minimum term similarity set for the FuzzyQuery which is 0.5
, you can override the default with your own minimum by specifying it after the tilde :
CALL db.index.fulltext.queryNodes('books', 'garde~0.7')
╒══════════════════════════════════════════════════════════════════════╤══════════════════╕
│"node" │"score" │
╞══════════════════════════════════════════════════════════════════════╪══════════════════╡
│{"image":"https://images.gr-assets.com/books/1327873635s/2998.jpg","ti│3.0637331008911133│
│tle":"The Secret Garden","isbn":"517189607","authors":"Frances Hodgson│ │
│ Burnett"} │ │
└──────────────────────────────────────────────────────────────────────┴──────────────────┘
Proximity Search
If you think about the use case for the FuzzySearch
, you can imagine that we would encounter the same need regarding PhraseQuery
searches, where the sequence of term provided in the query mae not be exactly as it was in the original corpus.
The following search will return nothing, while knowing we have a book with the title The secret life of bees
:
CALL db.index.fulltext.queryNodes('books', '"secret bees"')
(no changes, no records)
You can specify the distance between the words specified in the search query, for example :
CALL db.index.fulltext.queryNodes('books', '"secret bees"~3')
╒══════════════════════════════════════════════════════════════════════╤══════════════════╕
│"node" │"score" │
╞══════════════════════════════════════════════════════════════════════╪══════════════════╡
│{"image":"https://images.gr-assets.com/books/1473454532s/37435.jpg","t│2.7131075859069824│
│itle":"The Secret Life of Bees","isbn":"142001740","authors":"Sue Monk│ │
│ Kidd"} │ │
└──────────────────────────────────────────────────────────────────────┴──────────────────┘
WildcardQuery
The last implementation we will cover is the WildcardQuery, where you can provide wildcards for your searches.
Use ?
for a single character wildcard search, use *
for multiple characters wildcard search.
CALL db.index.fulltext.queryNodes('books', 'bee?')
╒══════════════════════════════════════════════════════════════════════╤══════════════════╕
│"node" │"score" │
╞══════════════════════════════════════════════════════════════════════╪══════════════════╡
│{"image":"https://images.gr-assets.com/books/1473454532s/37435.jpg","t│0.7071067690849304│
│itle":"The Secret Life of Bees","isbn":"142001740","authors":"Sue Monk│ │
│ Kidd"} │ │
└──────────────────────────────────────────────────────────────────────┴──────────────────┘
CALL db.index.fulltext.queryNodes('books', 'secr*')
╒══════════════════════════════════════════════════════════════════════╤══════════════════╕
│"node" │"score" │
╞══════════════════════════════════════════════════════════════════════╪══════════════════╡
│{"image":"https://images.gr-assets.com/books/1474169725s/15881.jpg","t│0.7071067690849304│
│itle":"Harry Potter and the Chamber of Secrets (Harry Potter, #2)","is│ │
│bn":"439064864","authors":"J.K. Rowling, Mary GrandPré"} │ │
├──────────────────────────────────────────────────────────────────────┼──────────────────┤
│{"image":"https://images.gr-assets.com/books/1473454532s/37435.jpg","t│0.7071067690849304│
│itle":"The Secret Life of Bees","isbn":"142001740","authors":"Sue Monk│ │
│ Kidd"} │ │
├──────────────────────────────────────────────────────────────────────┼──────────────────┤
│{"image":"https://images.gr-assets.com/books/1327873635s/2998.jpg","ti│0.7071067690849304│
│tle":"The Secret Garden","isbn":"517189607","authors":"Frances Hodgson│ │
│ Burnett"} │ │
└──────────────────────────────────────────────────────────────────────┴──────────────────┘
Scoring
The default scoring function of Apache Lucene, at least in version 5.5.5, is based on
a highly optimized Vector Space Model. That scoring function is more commonly known as TFIDF Similarity.
From Wikipedia :
In information retrieval, tf–idf or TFIDF, short for term frequency–inverse document frequency, is a numerical statistic that is intended to reflect how important a word is to a document in a collection or corpus.
Term frequency
The term frequency is the raw count of a term in a document (the number of times the term t
appears in document d
).
Inverse document frequency
The inverse document frequency is a measure of how much information the word provides (ie. if it’s common or rare across the corpus).
The formula for calculating the idf is the following :
where :
N
is the total number of documents in the corpus|{d ∈ D : t ∈ d}|
is the number of documents where the termt
appears
Term-frequency Inverse Document Frequency
The TF-IDF is calculated as
There are some variations and adaptations in the concrete implementation of TF-IDF in Lucene, but you have the basic idea of the most common similarity computation function used in information retrieval. For a detailed explanation of TF-IDF in Lucene, you can refer to its Javadocs.
A small example explains sometimes better :
CALL db.index.fulltext.queryNodes('books', 'sample')
╒═══════════════════════════════════════════════════╤══════════════════╕
│"node" │"score" │
╞═══════════════════════════════════════════════════╪══════════════════╡
│{"title":"this is a sample"} │0.5945348143577576│
├───────────────────────────────────────────────────┼──────────────────┤
│{"title":"this is another sample in a longer text"}│0.2972674071788788│
└───────────────────────────────────────────────────┴──────────────────┘
As you can see, the importance of the term sample
is higher in the first result because the text is shorter than the second result- this is the effect of the tf
formula.
If we would now create another 100 documents containing the term sample
, we will encounter the idf effect, which will increase the difference of similarity between the first result and all the other result for the term sample
because it appears often in many documents.
UNWIND range(1,100) AS i
CREATE (n:Book {title: "This is book with sample " + i})
╒═══════════════════════════════════════════════════╤═══════════════════╕
│"node" │"score" │
╞═══════════════════════════════════════════════════╪═══════════════════╡
│{"title":"this is a sample"} │0.9902438521385193 │
├───────────────────────────────────────────────────┼───────────────────┤
│{"title":"this is another sample in a longer text"}│0.49512192606925964│
├───────────────────────────────────────────────────┼───────────────────┤
│{"title":"This is book with sample 1"} │0.49512192606925964│
├───────────────────────────────────────────────────┼───────────────────┤
│{"title":"This is book with sample 2"} │0.49512192606925964│
├───────────────────────────────────────────────────┼───────────────────┤
│{"title":"This is book with sample 3"} │0.49512192606925964│
├───────────────────────────────────────────────────┼───────────────────┤
│{"title":"This is book with sample 4"} │0.49512192606925964│
├───────────────────────────────────────────────────┼───────────────────┤
│{"title":"This is book with sample 5"} │0.49512192606925964│
├───────────────────────────────────────────────────┼───────────────────┤
│{"title":"This is book with sample 6"} │0.49512192606925964│
├───────────────────────────────────────────────────┼───────────────────┤
Boosting
Users have the ability to influence the scoring of the matched results. Apache Lucene offers two types of boosting capabilities :
index time boosting
: which adds a boost factor to a document before it is indexed (not possible in Neo4j)query time boosting
: which applies a boost to a query
Let’s say that you want the search on the author to be more important than the search on the book’s title, you can apply a boost near the search terms for authors.
To demonstrate, let’s take a boolean query :
CALL db.index.fulltext.queryNodes('books', 'title: harry potter OR title:order of phoenix OR authors: rufus')
╒══════════════════════════════════════════════════════════════════════╤══════════════════╕
│"node" │"score" │
╞══════════════════════════════════════════════════════════════════════╪══════════════════╡
│{"image":"https://images.gr-assets.com/books/1387141547s/2.jpg","title│1.9725315570831299│
│":"Harry Potter and the Order of the Phoenix (Harry Potter, #5)","isbn│ │
│":"439358078","authors":"J.K. Rowling, Mary GrandPré"} │ │
├──────────────────────────────────────────────────────────────────────┼──────────────────┤
│{"image":"https://images.gr-assets.com/books/1499277281s/5.jpg","title│1.0511908531188965│
│":"Harry Potter and the Prisoner of Azkaban (Harry Potter, #3)","isbn"│ │
│:"043965548X","authors":"J.K. Rowling, Mary GrandPré, Rufus Beck"} │ │
├──────────────────────────────────────────────────────────────────────┼──────────────────┤
│{"image":"https://images.gr-assets.com/books/1474169725s/15881.jpg","t│0.4153219163417816│
│itle":"Harry Potter and the Chamber of Secrets (Harry Potter, #2)","is│ │
│bn":"439064864","authors":"J.K. Rowling, Mary GrandPré"} │ │
├──────────────────────────────────────────────────────────────────────┼──────────────────┤
│{"image":"https://images.gr-assets.com/books/1361482611s/6.jpg","title│0.4153219163417816│
│":"Harry Potter and the Goblet of Fire (Harry Potter, #4)","isbn":"439│ │
│139600","authors":"J.K. Rowling, Mary GrandPré"} │ │
├──────────────────────────────────────────────────────────────────────┼──────────────────┤
│{"image":"https://images.gr-assets.com/books/1474171184s/136251.jpg","│0.4153219163417816│
│title":"Harry Potter and the Deathly Hallows (Harry Potter, #7)","isbn│ │
│":"545010225","authors":"J.K. Rowling, Mary GrandPré"} │ │
├──────────────────────────────────────────────────────────────────────┼──────────────────┤
The first result has a higher score because it matches all the title conditions, but we can influence the authors to be of higher importance :
CALL db.index.fulltext.queryNodes('books', 'title: harry potter OR title:order of phoenix OR authors: rufus^5')
╒══════════════════════════════════════════════════════════════════════╤═══════════════════╕
│"node" │"score" │
╞══════════════════════════════════════════════════════════════════════╪═══════════════════╡
│{"image":"https://images.gr-assets.com/books/1499277281s/5.jpg","title│1.2862814664840698 │
│":"Harry Potter and the Prisoner of Azkaban (Harry Potter, #3)","isbn"│ │
│:"043965548X","authors":"J.K. Rowling, Mary GrandPré, Rufus Beck"} │ │
├──────────────────────────────────────────────────────────────────────┼───────────────────┤
│{"image":"https://images.gr-assets.com/books/1387141547s/2.jpg","title│0.9179487228393555 │
│":"Harry Potter and the Order of the Phoenix (Harry Potter, #5)","isbn│ │
│":"439358078","authors":"J.K. Rowling, Mary GrandPré"} │ │
├──────────────────────────────────────────────────────────────────────┼───────────────────┤
│{"image":"https://images.gr-assets.com/books/1474169725s/15881.jpg","t│0.19327662885189056│
│itle":"Harry Potter and the Chamber of Secrets (Harry Potter, #2)","is│ │
│bn":"439064864","authors":"J.K. Rowling, Mary GrandPré"} │ │
├──────────────────────────────────────────────────────────────────────┼───────────────────┤
│{"image":"https://images.gr-assets.com/books/1361482611s/6.jpg","title│0.19327662885189056│
│":"Harry Potter and the Goblet of Fire (Harry Potter, #4)","isbn":"439│ │
│139600","authors":"J.K. Rowling, Mary GrandPré"} │ │
├──────────────────────────────────────────────────────────────────────┼───────────────────┤
│{"image":"https://images.gr-assets.com/books/1474171184s/136251.jpg","│0.19327662885189056│
│title":"Harry Potter and the Deathly Hallows (Harry Potter, #7)","isbn│ │
│":"545010225","authors":"J.K. Rowling, Mary GrandPré"} │ │
├──────────────────────────────────────────────────────────────────────┼───────────────────┤
You can apply boosting to phrase queries as well :
CALL db.index.fulltext.queryNodes('books', 'title: "harry potter and the order of the phoenix" OR authors:"rufus beck"')
╒══════════════════════════════════════════════════════════════════════╤══════════════════╕
│"node" │"score" │
╞══════════════════════════════════════════════════════════════════════╪══════════════════╡
│{"image":"https://images.gr-assets.com/books/1499277281s/5.jpg","title│1.7385646104812622│
│":"Harry Potter and the Prisoner of Azkaban (Harry Potter, #3)","isbn"│ │
│:"043965548X","authors":"J.K. Rowling, Mary GrandPré, Rufus Beck"} │ │
├──────────────────────────────────────────────────────────────────────┼──────────────────┤
│{"image":"https://images.gr-assets.com/books/1387141547s/2.jpg","title│1.0253233909606934│
│":"Harry Potter and the Order of the Phoenix (Harry Potter, #5)","isbn│ │
│":"439358078","authors":"J.K. Rowling, Mary GrandPré"} │ │
└──────────────────────────────────────────────────────────────────────┴──────────────────┘
CALL db.index.fulltext.queryNodes('books', 'title: "harry potter and the order of the phoenix" OR authors:"rufus beck"^5')
╒══════════════════════════════════════════════════════════════════════╤══════════════════╕
│"node" │"score" │
╞══════════════════════════════════════════════════════════════════════╪══════════════════╡
│{"image":"https://images.gr-assets.com/books/1499277281s/5.jpg","title│1.7385646104812622│
│":"Harry Potter and the Prisoner of Azkaban (Harry Potter, #3)","isbn"│ │
│:"043965548X","authors":"J.K. Rowling, Mary GrandPré, Rufus Beck"} │ │
├──────────────────────────────────────────────────────────────────────┼──────────────────┤
│{"image":"https://images.gr-assets.com/books/1387141547s/2.jpg","title│1.0253233909606934│
│":"Harry Potter and the Order of the Phoenix (Harry Potter, #5)","isbn│ │
│":"439358078","authors":"J.K. Rowling, Mary GrandPré"} │ │
└──────────────────────────────────────────────────────────────────────┴──────────────────┘
This concludes this article about the Full Text Search capabilities in Neo4j.
Suggested Reading
Introduction to Information Retrieval : Manning, Raghavan & Schütze, 2007
Relevant Search : Doug Turnbull and John Berryman, 2016
Neo4j Full Text Search Documentation
Conclusion
Search is an important part of any application. The recent release of Neo4j brings this support which has been a long-time feature request from the community.
GraphAware has been a pioneer of Graph-Aided Search, using graphs to help during relevance engineering, with implementations at Airbnb or the World Economic Forum.
<footer class="article-footer">
<h3>Share this blog post:</h3>
<a class="" target="_blank" rel="noopener" href="https://twitter.com/intent/tweet?text=Deep Dive into Neo4j 3.5 Full Text Search&url=https://graphaware.com/neo4j/2019/01/11/neo4j-full-text-search-deep-dive.html&via=graph_aware"><i class="fa fa-twitter-square fa-2x" aria-hidden="true"></i></a>
<a class="" target="_blank" rel="noopener" href="https://www.facebook.com/sharer/sharer.php?u=https://graphaware.com/neo4j/2019/01/11/neo4j-full-text-search-deep-dive.html"><i class="fa fa-facebook-square fa-2x" aria-hidden="true"></i></a>
<a class="" target="_blank" rel="noopener" href="https://plus.google.com/share?url=https://graphaware.com/neo4j/2019/01/11/neo4j-full-text-search-deep-dive.html"><i class="fa fa-google-plus-square fa-2x" aria-hidden="true"></i></a>
<a class="" target="_blank" rel="noopener" href="https://www.linkedin.com/shareArticle?mini=true&url=https://graphaware.com/neo4j/2019/01/11/neo4j-full-text-search-deep-dive.html&title=Deep Dive into Neo4j 3.5 Full Text Search&summary=In+this+blog+we+will+go+over+the+Full+Text+Search+capabilities+available+in+the+latest+major+release+of+Neo4j.%0A%0AContrary+to+our+usual+blogs%2C+the+content+will+rather+focus+on+the+underlying+search+engine+used+by+Neo4j%2C+that+is+Apache+Lucene+in+version+5.5.5+.%0A%0AWhat+exactly+is+Search+%3F%0A%0ASearch+is+an+interaction+between+a+user+and+a+search+engine.+The+user+has+an+information+need+at+hand+and+attempts+to+satisfy+it+by+providing+a+search+with+adequate+constraints.%0A%0AThe+search+engine+uses+those+constraints+to+collect+matching+results+and+return+them+to+the+user.%0A%0AWhat+is+a+Search+Engine+%3F%0A%0AA+search+engine%E2%80%99s+purpose+is+to+store%2C+find+and+retrieve+content.+The+underlying+engine+used+by+Neo4j+is+Apache+Lucene%2C+a+free+and+open-source+information+retrieval+software+library.%0A%0AThere+are+some+concepts+that+are+key+to+search+engines+that+will+be+detailed+below.%0A%0ADocument%0A%0AIn+search+applications%2C+the+notion+of+a+Document+is+central%2C+because+Documents+are+the+items+being+stored%2C+searched+and+returned.+Documents+correspond+to+content+such+as+products+in+a+catalog%2C+content+of+books%2C+the+result+of+a+pdf+text+extraction+or+people%E2%80%99s+profiles.%0A%0AA+Document+contains+data+fields%2C+typically+keys+holding+data+values.%0A%0AInverted+Index%0A%0AAn+inverted+index+is+the+search+engine%E2%80%99s+data+structure.+Simply+put%2C+it+maps+documents+to+keywords+just+like+a+glossary+at+the+end+of+a+book.%0A%0AIt+is+composed+of+two+main+pieces+%3A+a+term+dictionary+and+a+postings+list.+The+term+dictionary+is+a+sorted+list+of+all+terms+that+occur+in+a+given+field+across+the+corpus.+The+term+dictionary+assigns+a+unique+identifier+to+each+term.+The+postings+list+is+the+mapping+between+each+term+%28referred+by+id%29+and+the+list+of+documents+in+which+it+appears.%0A%0A%0A%0AIn+order+to+serve+relevant+results%2C+Lucene+adds+more+data+structures+and+metadata+to+the+index%3B+we+will+talk+about+some+of+them+later+in+this+blog.+For+the+impatient%2C+they+are%3A+doc+frequency%2C+term+frequency%2C+term+positions%2C+term+offsets+and+so+on.%0A%0AAnalysis%0A%0AThe+analysis+is+the+process+of+converting+text+into+smaller+and+precise+units+for+the+sake+of+searching%3A+the+tokens.%0A%0AThe+analysis+is+composed+of+three+steps+%3A+character+filtering%2C+tokenization+and+token+filtering.%0A%0ALet%E2%80%99s+go+over+each+step+and+demonstrate+end-to-end+how+we+analyze+the+text+%0AThe+GraphAware%E2%80%99s+fifth+year+anniversary+at+the+Prague+office+in+%C5%BDitn%C3%A1%22.%0A%0ADuring+the+first+step%2C+character+filtering%2C+the+characters+of+text+fields+are+adjusted+or+filtered+in+different+ways.%0A%0A%0A%0AThe+next+step+is+tokenization.+As+the+name+indicates%2C+during+this+step%2C+raw+text+is+converted+into+tokens.+The+most+straightforward+way+to+tokenize+a+text+is+to+split+it+on+whitespaces%2C+but+it+is+rarely+the+right+approach%2C+because+you+would+end+up+with+tokens+containing+punctuation%2C+such+as+commas.%0A%0AInstead%2C+English+and+most+European+language+texts+use+the+standard+tokenizer%2C+which+split+on+word+whitespace+and+punctuation.%0A%0A%0A%0AThe+last+step+is+token+filtering.+Here+the+tokens+are+adjusted+by+adding+or+removing+them+or+by+changing+them.+For+the+purpose+of+normalizing+appropriately+the+tokens+from+our+example%2C+a+typical+choice+would+be+to+lowercase+the+tokens+and+remove+common+words+such+as+%E2%80%98the%E2%80%99+and+%E2%80%98at%E2%80%99+%28+usually+called+stopwords+%29%2C+and+remove+the+possessive+after+GraphAware.%0A%0A%0A%0AOnce+the+analysis+is+completed%2C+the+data+is+saved+into+the+inverted+index+as+described+above.%0A%0ASearching%0A%0AOnce+the+index+is+built%2C+we+can+search+that+index+using+a+Query+and+an+IndexSearcher.+The+IndexSearcher+is+hidden+in+the+Neo4j+implementation%2C+so+we+will+only+go+over+the+Query+syntax.%0A%0AThe+query+syntax+used+is+the+Apache+Lucene+Classic+Query+syntax%2C+let%E2%80%99s+go+over+some+examples%3A%0A%0A%0A++hello+%3A+search+for+documents+containing+the+term+hello%0A++title%3A+neo4j+%3A+search+for+documents+containing+the+term+neo4j+in+the+title+field%0A++graph%2A+%3A+search+for+documents+containing+terms+starting+with+graph%2C+such+as+graph%2C+graphs%2C+graphical%2C+etc.%0A%0A%0AThe+human-readable+query+is+parsed+by+the+Lucene%E2%80%99s+Query+Parser+and+is+then+transformed+to+a+concrete+implementation+of+the+Query+class%2C+for+which+we+need+some+understanding+and+examples+%3A%0A%0A%0A++%0A++++%0A++++++Query+implementation%0A++++++Purpose%0A++++++Example%0A++++%0A++%0A++%0A++++%0A++++++Term+Query%0A++++++Single+term+query%0A++++++neo4j%0A++++%0A++++%0A++++++PhraseQuery%0A++++++Match+of+several+terms+in+sequence%2C+or+in+near+vicinity+to+each+other%0A++++++%E2%80%9Cgraph+database%E2%80%9D%0A++++%0A++++%0A++++++RangeQuery%0A++++++Matches+documents+between+beginning+and+ending+terms%2C+including+or+excluding+the+end+points%0A++++++%5BA+TO+Z%5D+%7BA+TO+Z%7D%0A++++%0A++++%0A++++++WildcardQuery%0A++++++Regex+like+query%0A++++++g%2Ap%3F+%2C+d%3F%3Fabase%0A++++%0A++++%0A++++++PrefixQuery%0A++++++Matches+all+terms+beginning+with+a+specified+string%0A++++++algo%2A%0A++++%0A++++%0A++++++FuzzyQuery%0A++++++Levenshtein+algorithm+for+closeness+matching%0A++++++cipher~%0A++++%0A++++%0A++++++BooleanQuery%0A++++++Aggregates+other+query+instances+into+complex+expressions%0A++++++graph+AND+%E2%80%9Cshortest+path%E2%80%9D%0A++++%0A++%0A%0A%0AFull+Text+Search+with+Neo4j%0A%0AWe+will+now+see+how+all+of+the+above+is+available+in++Neo4j+through+dedicated+Cypher+procedures.+To+do+so%2C+we+need+to+populate+our+database+with+some+data%2C+in+this+case%2C+a+list+of+book+titles%3A%0A%0ALOAD+CSV+WITH+HEADERS+FROM+%22https%3A%2F%2Fbit.ly%2Ffts-books%22+AS+row%0ACREATE+%28n%3ABook+%7Btitle%3A+row.title%2C+isbn%3A+row.isbn%2C+id%3A+row.id%2C+image%3A+row.small_image_url%2C+authors%3A+row.authors%7D%29%0A%0A%0AIndexing%0A%0AThe+first+operation+to+do+is+to+create+a+fulltext+search+index%2C+with+the+help+of+the+following+procedure+%3A%0A%0ACALL+db.index.fulltext.createNodeIndex%28%27books%27%2C+%5B%27Book%27%5D%2C+%5B%27title%27%2C+%27authors%27%5D%29%0A%0A%0AThe+first+argument+is+the+name+of+the+index%2C+the+second+argument+is+a+list+of+node+labels+that+will+be+represented+as+documents+in+the+books+index.%0AThe+last+argument+is+the+list+of+properties+to+be+replicated+as+document+fields%2C+note+that+as+of+now%2C+only+text+properties+are+being+replicated.%0A%0AThere+is+an+optional+fourth+argument+that+takes+a+configuration+map%2C+where+you+can+specify+the+analyzer+to+be+used.+The+analyzer+is+the+class+that+will+split+the+text+into+tokens%2C+it+primarily+consist+of+tokenizers+and+filters.+Different+analyzers+will+have+different+combinations+of+tokenizers+and+filters.%0A%0ACALL+db.index.fulltext.createNodeIndex%28%27books%27%2C+%5B%27Book%27%5D%2C+%5B%27title%27%5D%2C+%7Banalyzer%3A+%22spanish%22%7D%29%0A%0A%0AYou+can+find+the+list+of+available+analyzers+with+the+following+the+procedure+%3A%0A%0ACALL+db.index.fulltext.listAvailableAnalyzers%0A%0A%0AThe+most+commonly+used+analyzers+are%0A%0A++StandardAnalyzer+%28+one+of+the+most+sophisticated+analyzers%2C+it+lowercase+the+text+and+remove+stopwords+and+punctuation%2C+it+can+also+regonise+emails+and+urls%29%0A++StopAnalyzer+%28+same+as+StandardAnalyzer+but+without+the+ability+to+recognise+emails+and+urls%29%0A++KeywordAnalyzer+%28+tokenize+the+input+as+a+single+token%2C+useful+for+ids+or+zipcodes+%29%0A%0A%0AYou+can+check+the+index+is+created+by+issuing+the+%3Aschema+command+%3A%0A%0AIndexes%0A+++ON+NODE%3ABook%28title%29+ONLINE+%0A%0ANo+constraints%0A%0A%0AQuerying%0A%0ANow+that+our+books+index+is+created%2C+we+can+query+it+and+test+our+full+text+search+queries.+Let%E2%80%99s+find+all+books+containing+the+word+%E2%80%9Csecret%E2%80%9D+in+their+title+%3A%0A%0ACALL+db.index.fulltext.queryNodes%28%27books%27%2C+%27secret%27%29%0A%0A%0A%E2%95%92%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A4%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%95%0A%E2%94%82%22node%22++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%E2%94%82%22score%22+++++++++++%E2%94%82%0A%E2%95%9E%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%AA%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A1%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1327873635s%2F2998.jpg%22%2C%22ti%E2%94%821.7604600191116333%E2%94%82%0A%E2%94%82tle%22%3A%22The+Secret+Garden%22%2C%22isbn%22%3A%22517189607%22%2C%22authors%22%3A%22Frances+Hodgson%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82+Burnett%22%7D++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1473454532s%2F37435.jpg%22%2C%22t%E2%94%821.4083679914474487%E2%94%82%0A%E2%94%82itle%22%3A%22The+Secret+Life+of+Bees%22%2C%22isbn%22%3A%22142001740%22%2C%22authors%22%3A%22Sue+Monk%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82+Kidd%22%7D+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%94%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%B4%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%98%0A%0A%0AAs+you+can+see%2C+the+result+of+the+procedure+is+not+a+list+of+documents%2C+but+a+list+of+nodes+instead.%0A%0AThere+is+a+concept+we+did+not+cover+yet%2C+scoring.+Let%E2%80%99s+first+show+some+examples+of+other+queries+before+diving+into+it.%0A%0ALet%E2%80%99s+now+search+for+secret+life+%3A%0A%0ACALL+db.index.fulltext.queryNodes%28%27books%27%2C+%27secret+life%27%29%0A%0A%E2%95%92%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A4%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%95%0A%E2%94%82%22node%22++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%E2%94%82%22score%22+++++++++++%E2%94%82%0A%E2%95%9E%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%AA%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A1%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1473454532s%2F37435.jpg%22%2C%22t%E2%94%821.9917329549789429%E2%94%82%0A%E2%94%82itle%22%3A%22The+Secret+Life+of+Bees%22%2C%22isbn%22%3A%22142001740%22%2C%22authors%22%3A%22Sue+Monk%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82+Kidd%22%7D+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1320562005s%2F4214.jpg%22%2C%22ti%E2%94%820.6224165558815002%E2%94%82%0A%E2%94%82tle%22%3A%22Life+of+Pi%22%2C%22isbn%22%3A%22770430074%22%2C%22authors%22%3A%22Yann+Martel%22%7D+++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1327873635s%2F2998.jpg%22%2C%22ti%E2%94%820.6224165558815002%E2%94%82%0A%E2%94%82tle%22%3A%22The+Secret+Garden%22%2C%22isbn%22%3A%22517189607%22%2C%22authors%22%3A%22Frances+Hodgson%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82+Burnett%22%7D++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%94%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%B4%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%98%0A%0A%0AAs+you+can+see%2C+the+second+result+does+not+contain+all+of+the+search+terms.+It+is+because%0Awhen+the+query+is+parsed%2C+it+is+understood+as+a+TermsQuery%2C+where+each+term+is+handled+separately.%0A%0ATo+circumvent+this%2C+we+can+force+the+query+to+be+understood+as+a+PhraseQuery%2C+by+enclosing+the+terms+in+double+quotes+%3A%0A%0ACALL+db.index.fulltext.queryNodes%28%27books%27%2C+%27%22secret+life%22%27%29%0A%0A%E2%95%92%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A4%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%95%0A%E2%94%82%22node%22++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%E2%94%82%22score%22+++++++++++%E2%94%82%0A%E2%95%9E%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%AA%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A1%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1473454532s%2F37435.jpg%22%2C%22t%E2%94%822.8167359828948975%E2%94%82%0A%E2%94%82itle%22%3A%22The+Secret+Life+of+Bees%22%2C%22isbn%22%3A%22142001740%22%2C%22authors%22%3A%22Sue+Monk%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82+Kidd%22%7D+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%94%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%B4%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%98%0A%0A%0AWe+can+also+search+on+a+specific+field+%3A%0A%0ACALL+db.index.fulltext.queryNodes%28%27books%27%2C+%27authors%3A+rowling%27%29%0A%0A%E2%95%92%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A4%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%95%0A%E2%94%82%22node%22++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%E2%94%82%22score%22+++++++++++%E2%94%82%0A%E2%95%9E%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%AA%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A1%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1474154022s%2F3.jpg%22%2C%22title%E2%94%821.7578392028808594%E2%94%82%0A%E2%94%82%22%3A%22Harry+Potter+and+the+Sorcerer%27s+Stone+%28Harry+Potter%2C+%231%29%22%2C%22isbn%22%3A%224%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%8239554934%22%2C%22authors%22%3A%22J.K.+Rowling%2C+Mary+GrandPr%C3%A9%22%7D++++++++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1387141547s%2F2.jpg%22%2C%22title%E2%94%821.7578392028808594%E2%94%82%0A%E2%94%82%22%3A%22Harry+Potter+and+the+Order+of+the+Phoenix+%28Harry+Potter%2C+%235%29%22%2C%22isbn%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82%22%3A%22439358078%22%2C%22authors%22%3A%22J.K.+Rowling%2C+Mary+GrandPr%C3%A9%22%7D++++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1474169725s%2F15881.jpg%22%2C%22t%E2%94%821.7578392028808594%E2%94%82%0A%E2%94%82itle%22%3A%22Harry+Potter+and+the+Chamber+of+Secrets+%28Harry+Potter%2C+%232%29%22%2C%22is%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82bn%22%3A%22439064864%22%2C%22authors%22%3A%22J.K.+Rowling%2C+Mary+GrandPr%C3%A9%22%7D++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1361482611s%2F6.jpg%22%2C%22title%E2%94%821.7578392028808594%E2%94%82%0A%E2%94%82%22%3A%22Harry+Potter+and+the+Goblet+of+Fire+%28Harry+Potter%2C+%234%29%22%2C%22isbn%22%3A%22439%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82139600%22%2C%22authors%22%3A%22J.K.+Rowling%2C+Mary+GrandPr%C3%A9%22%7D++++++++++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1474171184s%2F136251.jpg%22%2C%22%E2%94%821.7578392028808594%E2%94%82%0A%E2%94%82title%22%3A%22Harry+Potter+and+the+Deathly+Hallows+%28Harry+Potter%2C+%237%29%22%2C%22isbn%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82%22%3A%22545010225%22%2C%22authors%22%3A%22J.K.+Rowling%2C+Mary+GrandPr%C3%A9%22%7D++++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1361039191s%2F1.jpg%22%2C%22title%E2%94%821.7578392028808594%E2%94%82%0A%E2%94%82%22%3A%22Harry+Potter+and+the+Half-Blood+Prince+%28Harry+Potter%2C+%236%29%22%2C%22isbn%22%3A%22%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82439785960%22%2C%22authors%22%3A%22J.K.+Rowling%2C+Mary+GrandPr%C3%A9%22%7D+++++++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1499277281s%2F5.jpg%22%2C%22title%E2%94%821.3183794021606445%E2%94%82%0A%E2%94%82%22%3A%22Harry+Potter+and+the+Prisoner+of+Azkaban+%28Harry+Potter%2C+%233%29%22%2C%22isbn%22%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82%3A%22043965548X%22%2C%22authors%22%3A%22J.K.+Rowling%2C+Mary+GrandPr%C3%A9%2C+Rufus+Beck%22%7D++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%94%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%B4%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%98%0A%0A%0AOr+on+more+than+one+field+%3A%0A%0ACALL+db.index.fulltext.queryNodes%28%27books%27%2C+%27authors%3A+rowling+AND+title%3A+goblet%27%29%0A%0A%E2%95%92%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A4%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%95%0A%E2%94%82%22node%22++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%E2%94%82%22score%22++++++++++%E2%94%82%0A%E2%95%9E%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%AA%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A1%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1361482611s%2F6.jpg%22%2C%22title%E2%94%822.518252372741699%E2%94%82%0A%E2%94%82%22%3A%22Harry+Potter+and+the+Goblet+of+Fire+%28Harry+Potter%2C+%234%29%22%2C%22isbn%22%3A%22439%E2%94%82+++++++++++++++++%E2%94%82%0A%E2%94%82139600%22%2C%22authors%22%3A%22J.K.+Rowling%2C+Mary+GrandPr%C3%A9%22%7D++++++++++++++++++++++%E2%94%82+++++++++++++++++%E2%94%82%0A%E2%94%94%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%B4%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%98%0A%0A%0AFuzziness%0A%0AThe+power+of+Full+Text+Search+is+also+the+ability+to+retrieve+results+even+if+the+search+query+%0Adoes+not+exactly+match+text+in+the+original+corpus.%0A%0AThere+are+a+couple+of+implementations+offering+such+behaviors%2C+one+of+them+is+the+FuzzyQuery.%0A%0ACALL+db.index.fulltext.queryNodes%28%27books%27%2C+%27garde~%27%29%0A%0A%E2%95%92%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A4%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%95%0A%E2%94%82%22node%22++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%E2%94%82%22score%22+++++++++++%E2%94%82%0A%E2%95%9E%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%AA%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A1%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1408303130s%2F375802.jpg%22%2C%22%E2%94%821.6505731344223022%E2%94%82%0A%E2%94%82title%22%3A%22Ender%27s+Game+%28Ender%27s+Saga%2C+%231%29%22%2C%22isbn%22%3A%22812550706%22%2C%22authors%22%3A%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82%22Orson+Scott+Card%22%7D+++++++++++++++++++++++++++++++++++++++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1327873635s%2F2998.jpg%22%2C%22ti%E2%94%821.5997971296310425%E2%94%82%0A%E2%94%82tle%22%3A%22The+Secret+Garden%22%2C%22isbn%22%3A%22517189607%22%2C%22authors%22%3A%22Frances+Hodgson%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82+Burnett%22%7D++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1327656754s%2F11.jpg%22%2C%22titl%E2%94%821.0181047916412354%E2%94%82%0A%E2%94%82e%22%3A%22The+Hitchhiker%27s+Guide+to+the+Galaxy+%28Hitchhiker%27s+Guide+to+the+Ga%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82laxy%2C+%231%29%22%2C%22isbn%22%3A%22345391802%22%2C%22authors%22%3A%22Douglas+Adams%22%7D++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1439632243s%2F24178.jpg%22%2C%22t%E2%94%820.8555957078933716%E2%94%82%0A%E2%94%82itle%22%3A%22Charlotte%27s+Web%22%2C%22isbn%22%3A%2264410935%22%2C%22authors%22%3A%22E.B.+White%2C+Garth%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82+Williams%2C+Rosemary+Wells%22%7D+++++++++++++++++++++++++++++++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1436732693s%2F13496.jpg%22%2C%22t%E2%94%820.5999239683151245%E2%94%82%0A%E2%94%82itle%22%3A%22A+Game+of+Thrones+%28A+Song+of+Ice+and+Fire%2C+%231%29%22%2C%22isbn%22%3A%225535884%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%8286%22%2C%22authors%22%3A%22George+R.R.+Martin%22%7D+++++++++++++++++++++++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%94%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%B4%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%98%0A%0A%0AThe+tilde+%28~%29+allows+a+FuzzySearch+for+garde+using+the+Damarau-Levenshtein+distance+algorithm.+As+you+can+see%2C+some+results+such+as+The+Hitchhiker%27s+Guide+to+the+Galaxy+%28Hitchhiker%27s+Guide+to+the+Galaxy%2C+%231+are+not+really+relevant+for+our+search%2C+it+is+because+of+the+default+minimum+term+similarity+set+for+the+FuzzyQuery+which+is+0.5%2C+you+can+override+the+default+with+your+own+minimum+by+specifying+it+after+the+tilde+%3A%0A%0ACALL+db.index.fulltext.queryNodes%28%27books%27%2C+%27garde~0.7%27%29%0A%0A%E2%95%92%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A4%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%95%0A%E2%94%82%22node%22++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%E2%94%82%22score%22+++++++++++%E2%94%82%0A%E2%95%9E%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%AA%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A1%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1327873635s%2F2998.jpg%22%2C%22ti%E2%94%823.0637331008911133%E2%94%82%0A%E2%94%82tle%22%3A%22The+Secret+Garden%22%2C%22isbn%22%3A%22517189607%22%2C%22authors%22%3A%22Frances+Hodgson%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82+Burnett%22%7D++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%94%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%B4%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%98%0A%0A%0AProximity+Search%0A%0AIf+you+think+about+the+use+case+for+the+FuzzySearch%2C+you+can+imagine+that+we+would+encounter+the+same+need+regarding+PhraseQuery+searches%2C+where+the+sequence+of+term+provided+in+the+query++mae+not+be+exactly+as+it+was+in+the+original+corpus.%0A%0AThe+following+search+will+return+nothing%2C+while+knowing+we+have+a+book+with+the+title+The+secret+life+of+bees+%3A%0A%0ACALL+db.index.fulltext.queryNodes%28%27books%27%2C+%27%22secret+bees%22%27%29%0A%0A%28no+changes%2C+no+records%29%0A%0A%0AYou+can+specify+the+distance+between+the+words+specified+in+the+search+query%2C+for+example+%3A%0A%0ACALL+db.index.fulltext.queryNodes%28%27books%27%2C+%27%22secret+bees%22~3%27%29%0A%0A%E2%95%92%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A4%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%95%0A%E2%94%82%22node%22++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%E2%94%82%22score%22+++++++++++%E2%94%82%0A%E2%95%9E%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%AA%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A1%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1473454532s%2F37435.jpg%22%2C%22t%E2%94%822.7131075859069824%E2%94%82%0A%E2%94%82itle%22%3A%22The+Secret+Life+of+Bees%22%2C%22isbn%22%3A%22142001740%22%2C%22authors%22%3A%22Sue+Monk%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82+Kidd%22%7D+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%94%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%B4%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%98%0A%0A%0AWildcardQuery%0A%0AThe+last+implementation+we+will+cover+is+the+WildcardQuery%2C+where+you+can+provide+wildcards+for+your+searches.%0A%0AUse+%3F+for+a+single+character+wildcard+search%2C+use+%2A+for+multiple+characters+wildcard+search.%0A%0ACALL+db.index.fulltext.queryNodes%28%27books%27%2C+%27bee%3F%27%29%0A%0A%E2%95%92%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A4%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%95%0A%E2%94%82%22node%22++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%E2%94%82%22score%22+++++++++++%E2%94%82%0A%E2%95%9E%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%AA%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A1%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1473454532s%2F37435.jpg%22%2C%22t%E2%94%820.7071067690849304%E2%94%82%0A%E2%94%82itle%22%3A%22The+Secret+Life+of+Bees%22%2C%22isbn%22%3A%22142001740%22%2C%22authors%22%3A%22Sue+Monk%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82+Kidd%22%7D+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%94%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%B4%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%98%0A%0A%0ACALL+db.index.fulltext.queryNodes%28%27books%27%2C+%27secr%2A%27%29%0A%0A%E2%95%92%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A4%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%95%0A%E2%94%82%22node%22++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%E2%94%82%22score%22+++++++++++%E2%94%82%0A%E2%95%9E%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%AA%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A1%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1474169725s%2F15881.jpg%22%2C%22t%E2%94%820.7071067690849304%E2%94%82%0A%E2%94%82itle%22%3A%22Harry+Potter+and+the+Chamber+of+Secrets+%28Harry+Potter%2C+%232%29%22%2C%22is%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82bn%22%3A%22439064864%22%2C%22authors%22%3A%22J.K.+Rowling%2C+Mary+GrandPr%C3%A9%22%7D++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1473454532s%2F37435.jpg%22%2C%22t%E2%94%820.7071067690849304%E2%94%82%0A%E2%94%82itle%22%3A%22The+Secret+Life+of+Bees%22%2C%22isbn%22%3A%22142001740%22%2C%22authors%22%3A%22Sue+Monk%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82+Kidd%22%7D+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1327873635s%2F2998.jpg%22%2C%22ti%E2%94%820.7071067690849304%E2%94%82%0A%E2%94%82tle%22%3A%22The+Secret+Garden%22%2C%22isbn%22%3A%22517189607%22%2C%22authors%22%3A%22Frances+Hodgson%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82+Burnett%22%7D++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%94%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%B4%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%98%0A%0A%0AScoring%0A%0AThe+default+scoring+function+of+Apache+Lucene%2C+at+least+in+version+5.5.5%2C+is+based+on+%0Aa+highly+optimized+Vector+Space+Model.+That+scoring+function+is+more+commonly+known+as+TFIDF+Similarity.%0A%0AFrom+Wikipedia+%3A%0A%0A%0A++In+information+retrieval%2C+tf%E2%80%93idf+or+TFIDF%2C+short+for+term+frequency%E2%80%93inverse+document+frequency%2C+is+a+numerical+statistic+that+is+intended+to+reflect+how+important+a+word+is+to+a+document+in+a+collection+or+corpus.%0A%0A%0ATerm+frequency%0A%0AThe+term+frequency+is+the+raw+count+of+a+term+in+a+document+%28the+number+of+times+the+term+t+appears+in+document+d%29.%0A%0AInverse+document+frequency%0A%0AThe+inverse+document+frequency+is+a+measure+of+how+much+information+the+word+provides+%28ie.+if+it%E2%80%99s+common+or+rare+across+the+corpus%29.%0A%0AThe+formula+for+calculating+the+idf+is+the+following+%3A%0A%0A%0A%0Awhere+%3A%0A%0A%0A++N+is+the+total+number+of+documents+in+the+corpus%0A++%7C%7Bd+%E2%88%88+D+%3A+t+%E2%88%88+d%7D%7C+is+the+number+of+documents+where+the+term+t+appears%0A%0A%0ATerm-frequency+Inverse+Document+Frequency%0A%0AThe+TF-IDF+is+calculated+as%0A%0A%0A%0AThere+are+some+variations+and+adaptations+in+the+concrete+implementation+of+TF-IDF+in+Lucene%2C+but+you+have+the+basic+idea+of+the+most+common+similarity+computation+function+used+in+information+retrieval.+For+a+detailed+explanation+of+TF-IDF+in+Lucene%2C+you+can+refer+to+its+Javadocs.%0A%0AA+small+example+explains+sometimes+better+%3A%0A%0ACALL+db.index.fulltext.queryNodes%28%27books%27%2C+%27sample%27%29%0A%0A%E2%95%92%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A4%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%95%0A%E2%94%82%22node%22+++++++++++++++++++++++++++++++++++++++++++++%E2%94%82%22score%22+++++++++++%E2%94%82%0A%E2%95%9E%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%AA%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A1%0A%E2%94%82%7B%22title%22%3A%22this+is+a+sample%22%7D+++++++++++++++++++++++%E2%94%820.5945348143577576%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22title%22%3A%22this+is+another+sample+in+a+longer+text%22%7D%E2%94%820.2972674071788788%E2%94%82%0A%E2%94%94%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%B4%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%98%0A%0A%0AAs+you+can+see%2C+the+importance+of+the+term+sample+is+higher+in+the+first+result+because+the+text+is+shorter+than+the+second+result-+this+is+the+effect+of+the+tf+formula.%0A%0AIf+we+would+now+create+another+100+documents+containing+the+term+sample%2C+we+will+encounter+the+idf+effect%2C+which+will+increase+the+difference+of+similarity+between+the+first+result+and+all+the+other+result+for+the+term+sample+because+it+appears+often+in+many+documents.%0A%0AUNWIND+range%281%2C100%29+AS+i%0ACREATE+%28n%3ABook+%7Btitle%3A+%22This+is+book+with+sample+%22+%2B+i%7D%29%0A%0A%E2%95%92%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A4%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%95%0A%E2%94%82%22node%22+++++++++++++++++++++++++++++++++++++++++++++%E2%94%82%22score%22++++++++++++%E2%94%82%0A%E2%95%9E%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%AA%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A1%0A%E2%94%82%7B%22title%22%3A%22this+is+a+sample%22%7D+++++++++++++++++++++++%E2%94%820.9902438521385193+%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22title%22%3A%22this+is+another+sample+in+a+longer+text%22%7D%E2%94%820.49512192606925964%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22title%22%3A%22This+is+book+with+sample+1%22%7D+++++++++++++%E2%94%820.49512192606925964%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22title%22%3A%22This+is+book+with+sample+2%22%7D+++++++++++++%E2%94%820.49512192606925964%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22title%22%3A%22This+is+book+with+sample+3%22%7D+++++++++++++%E2%94%820.49512192606925964%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22title%22%3A%22This+is+book+with+sample+4%22%7D+++++++++++++%E2%94%820.49512192606925964%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22title%22%3A%22This+is+book+with+sample+5%22%7D+++++++++++++%E2%94%820.49512192606925964%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22title%22%3A%22This+is+book+with+sample+6%22%7D+++++++++++++%E2%94%820.49512192606925964%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%0A%0ABoosting%0A%0AUsers+have+the+ability+to+influence+the+scoring+of+the+matched+results.+Apache+Lucene+offers+two+types+of+boosting+capabilities+%3A%0A%0A%0A++index+time+boosting+%3A+which+adds+a+boost+factor+to+a+document+before+it+is+indexed+%28not+possible+in+Neo4j%29%0A++query+time+boosting+%3A+which+applies+a+boost+to+a+query%0A%0A%0ALet%E2%80%99s+say+that+you+want+the+search+on+the+author+to+be+more+important+than+the+search+on+the+book%E2%80%99s+title%2C+you+can+apply+a+boost+near+the+search+terms+for+authors.%0A%0ATo+demonstrate%2C+let%E2%80%99s+take+a+boolean+query+%3A%0A%0ACALL+db.index.fulltext.queryNodes%28%27books%27%2C+%27title%3A+harry+potter+OR+title%3Aorder+of+phoenix+OR+authors%3A+rufus%27%29%0A%0A%E2%95%92%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A4%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%95%0A%E2%94%82%22node%22++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%E2%94%82%22score%22+++++++++++%E2%94%82%0A%E2%95%9E%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%AA%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A1%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1387141547s%2F2.jpg%22%2C%22title%E2%94%821.9725315570831299%E2%94%82%0A%E2%94%82%22%3A%22Harry+Potter+and+the+Order+of+the+Phoenix+%28Harry+Potter%2C+%235%29%22%2C%22isbn%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82%22%3A%22439358078%22%2C%22authors%22%3A%22J.K.+Rowling%2C+Mary+GrandPr%C3%A9%22%7D++++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1499277281s%2F5.jpg%22%2C%22title%E2%94%821.0511908531188965%E2%94%82%0A%E2%94%82%22%3A%22Harry+Potter+and+the+Prisoner+of+Azkaban+%28Harry+Potter%2C+%233%29%22%2C%22isbn%22%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82%3A%22043965548X%22%2C%22authors%22%3A%22J.K.+Rowling%2C+Mary+GrandPr%C3%A9%2C+Rufus+Beck%22%7D++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1474169725s%2F15881.jpg%22%2C%22t%E2%94%820.4153219163417816%E2%94%82%0A%E2%94%82itle%22%3A%22Harry+Potter+and+the+Chamber+of+Secrets+%28Harry+Potter%2C+%232%29%22%2C%22is%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82bn%22%3A%22439064864%22%2C%22authors%22%3A%22J.K.+Rowling%2C+Mary+GrandPr%C3%A9%22%7D++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1361482611s%2F6.jpg%22%2C%22title%E2%94%820.4153219163417816%E2%94%82%0A%E2%94%82%22%3A%22Harry+Potter+and+the+Goblet+of+Fire+%28Harry+Potter%2C+%234%29%22%2C%22isbn%22%3A%22439%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82139600%22%2C%22authors%22%3A%22J.K.+Rowling%2C+Mary+GrandPr%C3%A9%22%7D++++++++++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1474171184s%2F136251.jpg%22%2C%22%E2%94%820.4153219163417816%E2%94%82%0A%E2%94%82title%22%3A%22Harry+Potter+and+the+Deathly+Hallows+%28Harry+Potter%2C+%237%29%22%2C%22isbn%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82%22%3A%22545010225%22%2C%22authors%22%3A%22J.K.+Rowling%2C+Mary+GrandPr%C3%A9%22%7D++++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%0A%0AThe+first+result+has+a+higher+score+because+it+matches+all+the+title+conditions%2C+but+we+can+influence+the+authors+to+be+of+higher+importance+%3A%0A%0ACALL+db.index.fulltext.queryNodes%28%27books%27%2C+%27title%3A+harry+potter+OR+title%3Aorder+of+phoenix+OR+authors%3A+rufus%5E5%27%29%0A%0A%E2%95%92%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A4%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%95%0A%E2%94%82%22node%22++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%E2%94%82%22score%22++++++++++++%E2%94%82%0A%E2%95%9E%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%AA%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A1%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1499277281s%2F5.jpg%22%2C%22title%E2%94%821.2862814664840698+%E2%94%82%0A%E2%94%82%22%3A%22Harry+Potter+and+the+Prisoner+of+Azkaban+%28Harry+Potter%2C+%233%29%22%2C%22isbn%22%E2%94%82+++++++++++++++++++%E2%94%82%0A%E2%94%82%3A%22043965548X%22%2C%22authors%22%3A%22J.K.+Rowling%2C+Mary+GrandPr%C3%A9%2C+Rufus+Beck%22%7D++++%E2%94%82+++++++++++++++++++%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1387141547s%2F2.jpg%22%2C%22title%E2%94%820.9179487228393555+%E2%94%82%0A%E2%94%82%22%3A%22Harry+Potter+and+the+Order+of+the+Phoenix+%28Harry+Potter%2C+%235%29%22%2C%22isbn%E2%94%82+++++++++++++++++++%E2%94%82%0A%E2%94%82%22%3A%22439358078%22%2C%22authors%22%3A%22J.K.+Rowling%2C+Mary+GrandPr%C3%A9%22%7D++++++++++++++++%E2%94%82+++++++++++++++++++%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1474169725s%2F15881.jpg%22%2C%22t%E2%94%820.19327662885189056%E2%94%82%0A%E2%94%82itle%22%3A%22Harry+Potter+and+the+Chamber+of+Secrets+%28Harry+Potter%2C+%232%29%22%2C%22is%E2%94%82+++++++++++++++++++%E2%94%82%0A%E2%94%82bn%22%3A%22439064864%22%2C%22authors%22%3A%22J.K.+Rowling%2C+Mary+GrandPr%C3%A9%22%7D++++++++++++++%E2%94%82+++++++++++++++++++%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1361482611s%2F6.jpg%22%2C%22title%E2%94%820.19327662885189056%E2%94%82%0A%E2%94%82%22%3A%22Harry+Potter+and+the+Goblet+of+Fire+%28Harry+Potter%2C+%234%29%22%2C%22isbn%22%3A%22439%E2%94%82+++++++++++++++++++%E2%94%82%0A%E2%94%82139600%22%2C%22authors%22%3A%22J.K.+Rowling%2C+Mary+GrandPr%C3%A9%22%7D++++++++++++++++++++++%E2%94%82+++++++++++++++++++%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1474171184s%2F136251.jpg%22%2C%22%E2%94%820.19327662885189056%E2%94%82%0A%E2%94%82title%22%3A%22Harry+Potter+and+the+Deathly+Hallows+%28Harry+Potter%2C+%237%29%22%2C%22isbn%E2%94%82+++++++++++++++++++%E2%94%82%0A%E2%94%82%22%3A%22545010225%22%2C%22authors%22%3A%22J.K.+Rowling%2C+Mary+GrandPr%C3%A9%22%7D++++++++++++++++%E2%94%82+++++++++++++++++++%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%0A%0AYou+can+apply+boosting+to+phrase+queries+as+well+%3A%0A%0ACALL+db.index.fulltext.queryNodes%28%27books%27%2C+%27title%3A+%22harry+potter+and+the+order+of+the+phoenix%22+OR+authors%3A%22rufus+beck%22%27%29%0A%0A%E2%95%92%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A4%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%95%0A%E2%94%82%22node%22++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%E2%94%82%22score%22+++++++++++%E2%94%82%0A%E2%95%9E%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%AA%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A1%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1499277281s%2F5.jpg%22%2C%22title%E2%94%821.7385646104812622%E2%94%82%0A%E2%94%82%22%3A%22Harry+Potter+and+the+Prisoner+of+Azkaban+%28Harry+Potter%2C+%233%29%22%2C%22isbn%22%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82%3A%22043965548X%22%2C%22authors%22%3A%22J.K.+Rowling%2C+Mary+GrandPr%C3%A9%2C+Rufus+Beck%22%7D++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1387141547s%2F2.jpg%22%2C%22title%E2%94%821.0253233909606934%E2%94%82%0A%E2%94%82%22%3A%22Harry+Potter+and+the+Order+of+the+Phoenix+%28Harry+Potter%2C+%235%29%22%2C%22isbn%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82%22%3A%22439358078%22%2C%22authors%22%3A%22J.K.+Rowling%2C+Mary+GrandPr%C3%A9%22%7D++++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%94%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%B4%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%98%0A%0A%0ACALL+db.index.fulltext.queryNodes%28%27books%27%2C+%27title%3A+%22harry+potter+and+the+order+of+the+phoenix%22+OR+authors%3A%22rufus+beck%22%5E5%27%29%0A%0A%E2%95%92%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A4%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%95%0A%E2%94%82%22node%22++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%E2%94%82%22score%22+++++++++++%E2%94%82%0A%E2%95%9E%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%AA%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%90%E2%95%A1%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1499277281s%2F5.jpg%22%2C%22title%E2%94%821.7385646104812622%E2%94%82%0A%E2%94%82%22%3A%22Harry+Potter+and+the+Prisoner+of+Azkaban+%28Harry+Potter%2C+%233%29%22%2C%22isbn%22%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82%3A%22043965548X%22%2C%22authors%22%3A%22J.K.+Rowling%2C+Mary+GrandPr%C3%A9%2C+Rufus+Beck%22%7D++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%9C%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%BC%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%A4%0A%E2%94%82%7B%22image%22%3A%22https%3A%2F%2Fimages.gr-assets.com%2Fbooks%2F1387141547s%2F2.jpg%22%2C%22title%E2%94%821.0253233909606934%E2%94%82%0A%E2%94%82%22%3A%22Harry+Potter+and+the+Order+of+the+Phoenix+%28Harry+Potter%2C+%235%29%22%2C%22isbn%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%82%22%3A%22439358078%22%2C%22authors%22%3A%22J.K.+Rowling%2C+Mary+GrandPr%C3%A9%22%7D++++++++++++++++%E2%94%82++++++++++++++++++%E2%94%82%0A%E2%94%94%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%B4%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%80%E2%94%98%0A%0A%0AThis+concludes+this+article+about+the+Full+Text+Search+capabilities+in+Neo4j.%0A%0ASuggested+Reading%0A%0AIntroduction+to+Information+Retrieval+%3A+Manning%2C+Raghavan+%26amp%3B+Sch%C3%BCtze%2C+2007%0A%0ARelevant+Search+%3A+Doug+Turnbull+and+John+Berryman%2C+2016%0A%0ANeo4j+Full+Text+Search+Documentation%0A%0AConclusion%0A%0ASearch+is+an+important+part+of+any+application.+The+recent+release+of+Neo4j+brings+this+support+which+has+been+a+long-time+feature+request+from+the+community.%0A%0AGraphAware+has+been+a+pioneer+of+Graph-Aided+Search%2C+using+graphs+to+help+during+relevance+engineering%2C+with+implementations+at+Airbnb+or+the+World+Economic+Forum.%0A%0A&source=https://graphaware.com/neo4j/2019/01/11/neo4j-full-text-search-deep-dive.html"><i class="fa fa-linkedin-square fa-2x" aria-hidden="true"></i></a>
<div id="disqus_thread" class="mt-5"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'graphaware'; // required: replace example with your forum shortname
/* * * DON'T EDIT BELOW THIS LINE * * */
(function () {
var dsq = document.createElement('script');
dsq.type = 'text/javascript';
dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments
powered by
Disqus.</a></noscript>
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
</footer>
原文地址:https://graphaware.com/neo4j/2019/01/11/neo4j-full-text-search-deep-dive.html
Deep Dive into Neo4j 3.5 Full Text Search的更多相关文章
- Deep Dive into Spark SQL’s Catalyst Optimizer(中英双语)
文章标题 Deep Dive into Spark SQL’s Catalyst Optimizer 作者介绍 Michael Armbrust, Yin Huai, Cheng Liang, Rey ...
- X64 Deep Dive
zhuan http://www.codemachine.com/article_x64deepdive.html X64 Deep Dive This tutorial discusses some ...
- 《Docker Deep Dive》Note - Docker 引擎
<Docker Deep Dive>Note Docker 引擎 1. 概览 graph TB A(Docker client) --- B(daemon) subgraph Docker ...
- 《Docker Deep Dive》Note - 纵观 Docker
<Docker Deep Dive>Note 由于GFW的隔离,国内拉取镜像会报TLS handshake timeout的错误:需要配置 registry-mirrors 为国内源解决这 ...
- 重磅解读:K8s Cluster Autoscaler模块及对应华为云插件Deep Dive
摘要:本文将解密K8s Cluster Autoscaler模块的架构和代码的Deep Dive,及K8s Cluster Autoscaler 华为云插件. 背景信息 基于业务团队(Cloud BU ...
- vue3 deep dive
vue3 deep dive vue core vnode vue core render / mount / patch refs https://www.vuemastery.com/course ...
- Javascript > Eclipse > problems encountered during text search
Reproduce: Ctrl + H, Select "File Search", will encounter eclipse kinds of bug/error alert ...
- MongoDB的全文检索(Text Search)功能
自己的项目中用到了mongodb,需要做一个搜索功能,刚开始不知道怎么搞,查了mongodb有个全文检索功能. 全文检索分为两步 第一,建立索引 db.stores.createIndex( { na ...
- full text search
definition https://www.techopedia.com/definition/17113/full-text-search A full-text search is a comp ...
随机推荐
- on() 不支持hover事件
因为 .hover() 是 jQuery 自己定义的事件… 是为了方便用户绑定调用 mouseenter 和 mouseleave 事件而已,它并非一个真正的事件,所以当然不能当做 .bind() 中 ...
- 1、postman介绍与安装
postman介绍 官方介绍:Developers use Postman to build modern software for the API-first world. 个人理解postman是 ...
- 18、Page Object 设计模式
Page Object 设计模式的优点如下: 减少代码的重复. 提高测试用例的可读性. 提高测试用例的可维护性, 特别是针对 UI 频繁变化的项目. 当你针对网页编写测试时,你需要引用该网页中的元素, ...
- 如何从ST官网下载STM32标准库
Frm:https://blog.csdn.net/k1ang/article/details/79645044
- C#内嵌Python架构实现
C#通过IronPython内嵌Python脚本,实现了对业务逻辑抽象及判断,适合在大量订单需要进行校验的场合使用. 比如,贷款时会对用户进行核查,核查过程可能存在多个节点,并且节点可能会随着政策而不 ...
- Ibatis sql语句1
<?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE sqlMap PUBLIC "-/ ...
- 调用API接口,查询手机号码归属地(2)
使用pymysql pip install pymysql 创建mysql测试表 CREATE TABLE `userinfo` ( `id` int(20) NOT NULL AUTO_INCREM ...
- axios获取本地文件配置步骤
首先修改一下config文件夹下面的index.js文件里面的配置,如下: 然后 ,通过axios 请求配置的接口 <script> import axios from 'axios' e ...
- 记录一次工作中jvm被linux杀死的调查
首先,以后碰到任何jvm的错误,先看日志!!!!!!!! web项目在tomcat目录下的log里,或者自己设定的errorfile目录下.总之,找到一切可以运用的日志,比如crash日志,cored ...
- 使用Fiddler抓取手机包
配置Fiddler 设置抓取HTTPS包 允许为外部连接 配置移动端 移动端需要能够连接到主机做代理, 设置移动端的网络, 端口为Fiddler的端口, 然后给移动端安装证书, 访问主机名+代理端口号 ...