客户端搜索引擎
我想就我目前的头痛问题得到一些建议。我一直在研究客户端浏览器的搜索引擎。我正在构建自定义词汇表项目。搜索引擎的思想将用于搜索术语、关键词或定义。
这是我对该项目的要求,
- 没有服务器端支持。 总客户端
- 仅用于 Intranet 的
- 为非 HTML5 的浏览器构建
- 数千个术语
关于如何构建仅客户端搜索引擎有什么建议或想法吗?
提前致谢
I would like to get some suggestions on my current headache. I have been researching on search engine for client side browser. I am building custom glossary project. The idea of the search engine will be used for searching terms, keywords, or definitions.
Here are my requirements for this project
- no server side support. Total client side
- only for intranet
- build for browser that is not HTML5
- thousands of terms
Any suggestions or ideas on how to build the client-side only search engine?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除非有完整的桌面应用程序,否则我不知道如何在没有服务器的情况下做到这一点。将 HTML 文件作为 .ZIP 文件分发并在本地浏览它们?如果是,您可能需要创建一个大页面,其中包含整个数据库(作为 Javascript 数据结构)并以这种方式进行搜索。使用正则表达式等不应该太难,但我怀疑您最终是否会获得有趣的用户体验......
真的很好奇为什么简单的服务器端解决方案不起作用:-)
Barring a full desktop app, I don't see how you can do this without a server. Distribute the HTML files as a .ZIP file and browse them locally? If yes, you probably need to make a honking big page with the whole database inside it (as Javascript data structures) and search that way. Shouldn't be too hard with regexes etcetera, but I doubt whether you'll end up with a fun user experience...
Really curious why a simple server-side solution won't work :-)