node-lmdb icon indicating copy to clipboard operation
node-lmdb copied to clipboard

test: the worker thread in fact has no chance of receiving messages from the main thread

Open jacobbubu opened this issue 4 years ago • 0 comments

https://github.com/Venemo/node-lmdb/blob/master/test/threads.js#L86 I'm trying to add console.log as following:

at line 86

...
process.on('message', function(msg) {
    console.log('worker received', msg) // no any output here
    if (msg.key) {
      var txn = env.beginTxn({readOnly: true});
    ...

jacobbubu avatar Mar 25 '22 02:03 jacobbubu