在dolphindb服务端有如下一个流表:
n=100000
t = streamTable(rand(100,n) as id, rand(100,0,n) as val)
share t as st
如何在客户端中得到这个表的数据,且客户端不是dolphindb的节点?
在dolphindb服务端有如下一个流表:
n=100000
t = streamTable(rand(100,n) as id, rand(100,0,n) as val)
share t as st
如何在客户端中得到这个表的数据,且客户端不是dolphindb的节点?
如果客户端不是DolphinDB数据节点,请使用相应的语言API订阅DolphinDB数据节点上的流表。支持的API语言包括Java,C++,c#,Go,Rust,Python,R和Web等。请访问https://github.com/dolphindb获取相应的语言api编程接口。