问题标签 [r2d2]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
49 浏览

database - 如何在每个函数中多次使用 Actix 中的数据库连接?

https://actix.rs/docs/databases/有一个例子:

如果我在一个函数中需要多个 SQL 查询怎么办?由于移动,以下显然不起作用conn

我可以通过重复调用来接收多个连接pool.get(),但是当一个连接足够时打开新的 SQL 连接效率低下。

那么,如何处理呢?