exxeleron / qPython

interprocess communication between Python and kdb+
http://www.devnet.de
Apache License 2.0
152 stars 89 forks source link

Query with 'async' and 'receive' block #63

Open colin-zhou opened 5 years ago

colin-zhou commented 5 years ago

Environment: centos7 x64 kdb+ 3.5 python 3.5

Operations:

  1. start q service with some port and create a table
  2. python client[A] connect it and use 'async' upsert data into that table
  3. python client[B] connect it and try to use 'async' query data

It happens that client[B] 'receive' not working(blocked). However, after I replace 'sync' with 'async' it works well.