Git Product home page Git Product logo

Comments (3)

audreyt avatar audreyt commented on August 10, 2024

Hi, currently we do not support require() in threads, there is only importScripts, which only supports pure-JavaScript modules (via browserify, webpack, onejs etc), and it cannot write to the filesystem.

Perhaps you could move the SQLite-access functions to the main thread, and postMessage from within the worker to access it?

from node-webworker-threads.

Piero87 avatar Piero87 commented on August 10, 2024

so you mean pass this: var db, to the worker?

from node-webworker-threads.

audreyt avatar audreyt commented on August 10, 2024

I mean something like:

var Worker = require('webworker-threads').Worker;
var sqlite3 = require('sqlite3').verbose();
var worker = new Worker(function(){
  this.postMessage(...) // query to db
  this.onmessage = function(event) {
      // ...handler result from SQLite3...
  };
});

var db = new sqlite3.Database('MyDB.db');
worker.onmessage = function (event) {
   // ... do something with db ...
}

Basically doing all DB filesystem operations in the main threads, and have the worker do CPU-intensive work. Something like https://github.com/mozilla/jschannel might be useful to make postMessage easier to reason with.

from node-webworker-threads.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.