我正在尝试使用 gen_server 从 erlang 的 redis 中插入 10000 条记录。但是,我得到以下异常
exception exit: {connection_error,{connection_error,eaddrnotavail}}
笔记:-
- redis 服务器上的端口范围就足够了
- Redis 配置为一次接受 10000 个连接
- 我还尝试使用 timer:sleep 来排除连接已满的可能性。
- 我正在启动连接、触发查询并立即关闭连接
- 从 gen_server 到 redis 的调用是同步的
- 我正在使用 eredis 作为库
- 我在 redis 中插入大约 200 到 500 次时收到此错误