Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个需要来自数据库的数据的 CUDA 代码我想从存储在 PostgreSQL 中的数据库中获取 400 个随机行。如果我按顺序检索每一行,这将使我的代码非常慢,并且无法达到并行性和加速的目的。所以,我想要一些可以与 PostgreSQL 建立多个连接并更快地检索数据的 C 库或函数。
C中有什么东西可以帮助我做到这一点吗?
也许这样的查询适合您:
SELECT * FROM tablename ORDER BY RANDOM() LIMIT 400;