Total Pageviews

Saturday 27 May 2023

全文搜索服务器FTServer



FTServer是由国人开发的开源全文搜索服务器, 多语言支持,可把搜索引擎整合到各类应用程序中,直接编译就可以使用。目前包含Java 版本和C#版本.

Github源码:
JAVA版本代码, https://github.com/iboxdb/ftserver
C#版本代码,https://github.com/iboxdb/ftserver-cs

--------------------------------------------------------------

Full Text Search Engine Server for CSharp

User Guide

Setup

  1. Install NET 7.0+ (and dotnet7.0 sdk)

  2. clone this Project. (git clone https://github.com/iboxdb/ftserver-cs)

    cd  ftserver-cs

cd FTServer
dotnet run -c Release
  1. Open http://127.0.0.1:5066/

  2. Press [Ctrl+C] to shut down.

Input a Full URL to index the Page, then search.

Move page forward by re-indexing the page.

Search Format

[Word1 Word2 Word3] => text has Word1 and Word2 and Word3

["Word1 Word2 Word3"] => text has "Word1 Word2 Word3" as a whole

Search [https] or [http] => get almost all pages.

from https://github.com/iboxdb/ftserver-cs



No comments:

Post a Comment