文档内容搜索
我开发了一个文档系统,允许我的客户在数据库中上传多种类型的文件:word、pdf、ppt 等,这些文件以二进制数据的形式存储在数据库中。文档与某些元数据(例如标题、摘要、所有者、类别等)一起输入数据库。用户可以搜索与标题和摘要中的单词匹配的文档。我的客户现在希望用户能够搜索文件的内容。如果不使用 SQL Server 全文搜索,我还有什么其他选择?非常感谢!
I've developed a document system that allows my client to upload several types of files: word, pdf, ppt, etc. in a database in which they are stored as binary data. The documents are entered in the database alongside certain metadata such as title, summary, owner, category, etc. Users can search for documents matching words in the titles and summaries. My client wants now users to be able to search the contents of the files. Without using SQL Server full-text search, what other option do I have? Many thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你看过 Lucene 吗?它几乎是事实上的索引引擎。他们还有一个正在孵化的 .net 版本。
Have you looked at Lucene? It is pretty much the de facto indexing engine. They have a .net version in incubation as well.
开源分面搜索/ 使用 .net api 进行电子商务网站的引导式导航
open source faceted search / guided navigation for ecommerce sites with .net apis