Hi group,
I am trying to achieve best as possible data transfert performance from kdb+ to C# application. I tried all possible way, qODBC, qSharp, c.cs from kx but I have no impressive result yet!
What I mean by that:
q)meta table
c | t f a
--------------| -----
stock_id | i g
time | t s
last | f
last_size | i
total_volume | i
bid | f
ask | f
basis_for_last| c
q)select count i from table where stock_id = 926
x
218471
q)\t select from table where stock_id = 926
13
The result takes 13ms on kdb+ console but ~200ms with c.cs. This is alot of overhead for the socket and I got the same result with an SQL Server on disk only.
Any tips?