如何使用 R 连接到 Redis(rredis 和特定套接字)
How to connect to Redis using R (rredis and specific socket)
我对 Redis 完全陌生,对 R 相对陌生。我需要做一个作业,我首先需要连接到一个套接字(它流式传输股票的键值)。
我使用自制软件在 mac 中安装了 Redis,然后在 R 中安装了包 rredis
。
每次我尝试连接到本地主机时,我都会收到以下错误:
redisConnect()
Warning message:
In .openConnection(host = host, port = port, nodelay = nodelay, :
Unable to set nodelay.
如果我设置nodelay = F
我已连接
现在,我正在尝试连接到特定的套接字 (ip: 88.99.38.191, port:1337)
我明白了
redisConnect(host = "88.99.38.191", port = 1337)
Error: Error in doTryCatch(return(expr), name, parentenv, handler):
Unknown message type
Warning message:
In .openConnection(host = host, port = port, nodelay = nodelay, :
Unable to set nodelay.
如果我尝试设置 nodelay = F
:
> redisConnect(host = "88.99.38.191", port = 1337, nodelay = F)
Error: Error in doTryCatch(return(expr), name, parentenv, handler): Unknown message type
Warning messages:
1: closing unused connection 12 (->localhost:6379)
2: closing unused connection 11 (->localhost:6379)
3: closing unused connection 10 (->localhost:6379)
4: closing unused connection 9 (->localhost:6379)
有人知道我做错了什么吗?我在网上看到的所有指南/教程在 nodelay = T
的默认设置下都没有问题
ps:请原谅我的孤陋寡闻,不然我有类似的post,没找到
对于那些感兴趣的人来说,到套接字的连接是这样建立的
con <- socketConnection(host="88.99.38.191", port = 1337, blocking=T,
server=FALSE, open="r+")
与redis无关。 Redis 正在侦听本地 ip,而 redisConnect
用于连接到远程 redis 服务器。
可以找到更多信息 here。
我对 Redis 完全陌生,对 R 相对陌生。我需要做一个作业,我首先需要连接到一个套接字(它流式传输股票的键值)。
我使用自制软件在 mac 中安装了 Redis,然后在 R 中安装了包 rredis
。
每次我尝试连接到本地主机时,我都会收到以下错误:
redisConnect()
Warning message:
In .openConnection(host = host, port = port, nodelay = nodelay, :
Unable to set nodelay.
如果我设置nodelay = F
我已连接
现在,我正在尝试连接到特定的套接字 (ip: 88.99.38.191, port:1337)
我明白了
redisConnect(host = "88.99.38.191", port = 1337)
Error: Error in doTryCatch(return(expr), name, parentenv, handler):
Unknown message type
Warning message:
In .openConnection(host = host, port = port, nodelay = nodelay, :
Unable to set nodelay.
如果我尝试设置 nodelay = F
:
> redisConnect(host = "88.99.38.191", port = 1337, nodelay = F)
Error: Error in doTryCatch(return(expr), name, parentenv, handler): Unknown message type
Warning messages:
1: closing unused connection 12 (->localhost:6379)
2: closing unused connection 11 (->localhost:6379)
3: closing unused connection 10 (->localhost:6379)
4: closing unused connection 9 (->localhost:6379)
有人知道我做错了什么吗?我在网上看到的所有指南/教程在 nodelay = T
ps:请原谅我的孤陋寡闻,不然我有类似的post,没找到
对于那些感兴趣的人来说,到套接字的连接是这样建立的
con <- socketConnection(host="88.99.38.191", port = 1337, blocking=T,
server=FALSE, open="r+")
与redis无关。 Redis 正在侦听本地 ip,而 redisConnect
用于连接到远程 redis 服务器。
可以找到更多信息 here。