Net box client independent of tarantool runtime
Currently we have a netbox client (tarantool/src/net_box
) which is implemented on top of tarantool fibers. This is useful for communicating with other tarantool instances from within one. However, because it is dependent on tarantool symbols, we can't use it in a standalone application.
We need a standalone client api. It would preferrably reuse most of the current net_box code. The simples solution would not try to do any concurrency at all, but using at least built-in rust threads is better.
Maybe something usefull can be found in here: https://github.com/zheludkovm/RustyTarantool