rkdb
rkdb copied to clipboard
Async calls from R
I see some mention of async calls. Is it possible to query data asynchronously through R?
Thanks!
rkdb is a wrapper around k.h. So you can use the negative handle to fire and forget commands to kdb.
handle = open_connection(port = 8888) execute(-handle,'b:1 2 3') # this is possible
But if you want to 'wait' for the kdb process to come back to you this has not been implemented yet. Implementation should be fairly easy. Perhaps we can label this as enhancement.