如何在dolphinDB中发布表?

问题描述 投票:1回答:1

我在DolphinDB服务器中有一个如下表:

n=100000
t=streamTable(rand(100,n) as id ,rand(100.0,n) as val)
share t as st;

如何获取客户端中的数据,并且clint不是DolphinDB节点。

streaming dolphindb
1个回答
0
投票

如果客户端不是DolphinDB数据节点,请使用相应的语言API来订阅DolphinDB数据节点上的流表。支持的API语言包括Java,C ++,c#,Go,Rust,Python,R和Web。转到https://github.com/dolphindb可获得相应的语言api。

© www.soinside.com 2019 - 2024. All rights reserved.