DSFFullTextSearchIndex
1.0.0
使用SQLITE FTS5的简单iOS/MACOS/TVOS全文搜索(FTS)类,使用类似的API与SksearchKit相似,没有外部依赖关系
我想在我的MacOS/iOS应用程序中添加全文搜索索引,并意识到SksearchKit(因此DFSearchKit仅是MacOS。
SQLite具有可通过的固体FTS功能,我希望能够以与SkSearchKit相似的方式使用它们。我还想要一个没有任何依赖性的简单包装器。尽管我爱GRDB,但我当然不需要它提供的所有内容。
我也想要两者都可以的东西: -
// Create an index
let index = DSFFullTextSearchIndex ( )
index . create ( filePath : /* some file path */ )
//
// Add some documents
//
let url1 = URL ( string : " demo://maintext/1 " )
index . add ( url : url1 , text : " Sphinx of black quartz judge my vow " )
let url2 = URL ( string : " demo://maintext/2 " )
index . add ( url : url2 , text : " Quick brown fox jumps over the lazy dog " )
let url3 = URL ( string : " demo://maintext/3 " )
index . add ( url : url3 , text : " The dog didn't like the bird sitting on the fence and left quietly " )
//
// Search
//
let urls1 = index . search ( text : " quartz " ) // single match - url1
let urls2 = index . search ( text : " quick " ) // single match - url2
let urls3 = index . search ( text : " dog " ) // two matches - url1 and url3
// Search with a wildcard
let urls4 = index . search ( text : " qu* " ) // three matches = url1 (quartz), url2 (quick) and url3 (quietly)使用Swift-Doc生成。
MIT License
Copyright (c) 2020 Darren Ford
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.