Full Text Search with Firebird and Delphi

后端 未结 2 1686
攒了一身酷
攒了一身酷 2021-02-03 14:17

I\'m looking into implementing full text search on our Firebird database. Our requirements are:

  1. Every field in several tables should be indexed. When a result is f
2条回答
  •  无人共我
    2021-02-03 14:58

    I think you will have a problem with requirement 2: The index can be stored in the database or in the file system. Most indexing services create their own index file which stores data in a highly optimized way. If you really want it, maybe it is possible to load and save an index to a single blob field but I don't really see a reason for this.

提交回复
热议问题