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.
我看到了如何使用本机 mongo 驱动程序在 Node.js 中为 GridFS 中的文件创建可读流。但是,我正在编写一个响应字节范围请求的服务器,所以我只想流回文件的一部分。最好的方法是什么?我是否应该实现自己的读取流,从数据库中分块提取数据?谢谢!
不幸的是,流不支持任意起点,因此您必须实现自己的寻找正确的块,然后从那里流。