Firestore Spring 应用程序的连接池

发布于 2025-01-10 06:11:48 字数 715 浏览 0 评论 0原文

与 Spring Data 类似,连接池可以在 Firestore/集合参考快速入门显示了创建读/写连接的步骤,但无法找到这些连接是否Java 对象支持并发。

不是:引用 数据库连接池 ,而不是 http 池

Similar to Spring Data, can connection pooling be done on Firestore/CollectionReference. The quickstart shows steps to create connections for reading/writing, but could not locate if these Java objects support concurrency.

Not: referring Database Connection pool , not http pooling.

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

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

发布评论

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

评论(1

流年里的时光 2025-01-17 06:11:48

连接池允许您重用创建成本高昂的对象。 Firestore SDK 已经在幕后重用了此类对象,并且既没有必要也没有办法影响它。

Firestore 对象本身已由 SDK 缓存,或者至少其昂贵的内部结构已缓存。 CollectionReference 对象是数据库中路径的轻量级包装器,因此创建起来很便宜。

Connection pooling allows you to re-use objects that are expensive to create. The Firestore SDK already re-uses such objects behind the scenes, and there's neither a need nor a way to influence this.

The Firestore object itself is already cached by the SDK, or at least its expensive internals are. A CollectionReference object is lightweight wrapper for a path in the database, so it's cheap to create.

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