0

我想使用 PyQ 解析一个 json 对象,然后通过将解析的数据通过一个打开的句柄推送到键控表来更新在不同端口上运行的键控 kdb 表。

要在 q 中打开句柄并更新 kdb 表,需要执行以下步骤...

在服务器上;打开端口,定义一个表和一个函数

q)\p 5000
q)t:([keycol:`aa`bb`cc]col2:10 20 30; col3: 1.1 2.2 3.3)
q)f:{[x;y]update col2: y from t where keycol=x}
q)t
keycol| col2 col3
------| ---------
aa    | 10   1.1
bb    | 20   2.2
cc    | 30   3.3

在客户端;打开连接句柄,调用函数,关闭连接句柄...

q)h:hopen `::5000
q)h (`f; `aa; 99)
keycol| col2 col3
------| ---------
aa    | 99   1.1
bb    | 20   2.2
cc    | 30   3.3
q)hclose h

在 PyQ 中执行此操作的正确语法是什么?

4

1 回答 1

3

Your client commands can be translated to PyQ as follows:

>>> h = q.hopen('::5000')
>>> h(('f','aa',99)).show()
keycol| col2 col3
------| ---------
aa    | 99   1.1
bb    | 20   2.2
cc    | 30   3.3
>>> h.hclose()
k('::')

Note that this will not update the table on the server unless you change f to use `t instead of t.

于 2018-11-28T22:43:05.450 回答