AddWord
Adds a new word coming from a document to the index. The word is added with multiple variations allowing partial search.
Read time 4 minutesLast updated 12 days ago
Definition
- Type: Method
- Namespace: UnityEditor.Search
- Assembly: UnityEditor
AddWord(string, int, int)
Adds a new word coming from a document to the index. The word is added with multiple variations allowing partial search.
public void AddWord(string word, int score, int documentIndex)
Parameters
Examples
using UnityEditor;using UnityEditor.Search;using UnityEngine;static class Example_SearchIndexer_AddWord{ [MenuItem("Examples/SearchIndexer/AddWord")] public static void Run() { // Create a search indexer var searchIndexer = new SearchIndexer("SearchIndexerExample", FileUtil.GetUniqueTempPathInProject()); // Indicate that Search is about to index documents. searchIndexer.Start(); // Add a document var di = searchIndexer.AddDocument("My/File/Path"); // Index some words var baseScore = 42; // These calls will index the words "awesome", "unity" and "thisisitasuperlongword". These words will be searchable by prefixes or exact matches. searchIndexer.AddWord("awesome", baseScore, di); searchIndexer.AddWord("unity", baseScore, di); searchIndexer.AddWord("thisisitasuperlongword", baseScore, di); // Indicate that searchIndexer is finished indexing a document and is ready to search. searchIndexer.Finish(() => { // Search the index foreach (var result in searchIndexer.Search("unity awes this")) Debug.Log($"Found document [{result.index}] {result.id} ({result.score})"); // Dispose of the SearchIndexer when you are done with it. searchIndexer.Dispose(); }); }}
AddWord(string, int, int, int)
Adds a new word coming from a document to the index. The word is added with multiple variations allowing partial search.
public void AddWord(string word, int size, int score, int documentIndex)
Parameters
Examples
using UnityEditor;using UnityEditor.Search;using UnityEngine;static class Example_SearchIndexer_AddWord{ [MenuItem("Examples/SearchIndexer/AddWord")] public static void Run() { // Create a search indexer var searchIndexer = new SearchIndexer("SearchIndexerExample", FileUtil.GetUniqueTempPathInProject()); // Indicate that Search is about to index documents. searchIndexer.Start(); // Add a document var di = searchIndexer.AddDocument("My/File/Path"); // Index some words var baseScore = 42; // These calls will index the words "awesome", "unity" and "thisisitasuperlongword". These words will be searchable by prefixes or exact matches. searchIndexer.AddWord("awesome", baseScore, di); searchIndexer.AddWord("unity", baseScore, di); searchIndexer.AddWord("thisisitasuperlongword", baseScore, di); // Indicate that searchIndexer is finished indexing a document and is ready to search. searchIndexer.Finish(() => { // Search the index foreach (var result in searchIndexer.Search("unity awes this")) Debug.Log($"Found document [{result.index}] {result.id} ({result.score})"); // Dispose of the SearchIndexer when you are done with it. searchIndexer.Dispose(); }); }}
AddWord(string, int, int, int, int)
Adds a new word coming from a document to the index. The word is added with multiple variations allowing partial search.
public void AddWord(string word, int minVariations, int maxVariations, int score, int documentIndex)
Parameters
Word to add to the index.
Minimum number of variations to compute. Cannot be higher than the length of the word.
Maximum number of variations to compute. Cannot be higher than the length of the word.
Relevance score of the word.
Document where the indexed word was found.
Examples
using UnityEditor;using UnityEditor.Search;using UnityEngine;static class Example_SearchIndexer_AddWord{ [MenuItem("Examples/SearchIndexer/AddWord")] public static void Run() { // Create a search indexer var searchIndexer = new SearchIndexer("SearchIndexerExample", FileUtil.GetUniqueTempPathInProject()); // Indicate that Search is about to index documents. searchIndexer.Start(); // Add a document var di = searchIndexer.AddDocument("My/File/Path"); // Index some words var baseScore = 42; // These calls will index the words "awesome", "unity" and "thisisitasuperlongword". These words will be searchable by prefixes or exact matches. searchIndexer.AddWord("awesome", baseScore, di); searchIndexer.AddWord("unity", baseScore, di); searchIndexer.AddWord("thisisitasuperlongword", baseScore, di); // Indicate that searchIndexer is finished indexing a document and is ready to search. searchIndexer.Finish(() => { // Search the index foreach (var result in searchIndexer.Search("unity awes this")) Debug.Log($"Found document [{result.index}] {result.id} ({result.score})"); // Dispose of the SearchIndexer when you are done with it. searchIndexer.Dispose(); }); }}