Monday, August 4, 2014

kdb ipc - set remote variable = value of local variable

// opening conn
h: hopen `::5000

// assigning a fixed value to a remote variable is easy
h "rv:10"

// local variable = 12
lv:12

// assigning rv = lv is tricky and needs
h ({rv::x};lv)

No comments:

Post a Comment