具有搜索功能的文档数据库

发布于 2025-01-06 17:27:16 字数 225 浏览 2 评论 0原文

有谁知道是否有任何文档数据库提供良好的搜索功能?我看到 RavenDb 在某种程度上使用 Lucene.net,但我正在寻找更集成的搜索体验,就像 Truffler.net 客户端 api 为您提供的那样。他们在 Elasticsearch 之上构建了一个 .net 客户端,提供了出色的搜索功能。

我认为如果任何文档数据库客户端可以直接通过其客户端 API 提供类似的功能,这将是一个杀手级功能,但我不确定这是否可行。

Does anybody know if any of the document databases offers good search features? I see RavenDb is using Lucene.net to some degree but I am looking for a more integrated search experience like the Truffler.net client api are giving you. They have built a .net client on top of Elasticsearch which gives great search features.

I think it would be a killer feature if any of the document database clients could offer similar features directly through their client api but I am not sure if that is even feasible.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夜雨飘雪 2025-01-13 17:27:16

TT,
RavenDB 提供了很多搜索功能。它被深度集成到API中。
您可以进行简单的全文搜索、建议、空间搜索等等。
以下是如何执行与主页中相同的查询的示例:

session.Query<Resturant, Resturants_Search>()
  .Customize(c=>c.WithinRadiusOf(radios: 3, latitude: 51, longitude: 43)
  .Search(r=>r.Query, "Seafood")
  .Select(r=>new{r.Name, r.Address})
  .Take(5);

TT,
RavenDB is providing a lot of searching capabilities. It is deeply integrated into to API.
You can do simple and full text searches, suggestions, spatial, and a lot more.
Here is an example of how you can do the same query that they have in the main page:

session.Query<Resturant, Resturants_Search>()
  .Customize(c=>c.WithinRadiusOf(radios: 3, latitude: 51, longitude: 43)
  .Search(r=>r.Query, "Seafood")
  .Select(r=>new{r.Name, r.Address})
  .Take(5);
葬﹪忆之殇 2025-01-13 17:27:16

您看过 MongoDB 或 CouchDB 吗?我知道 ShutterFly、Craigs List 等一些大公司都使用 MongoDB。有多种 api,其中包括一种用于 C# 的 API。

Have you looked at MongoDB or CouchDB? I know some of the big guys like ShutterFly, Craigs List, etc use MongoDB. There are several api's, including one for C#.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文