Giter Site home page Giter Site logo

Concurrent reads and writes about sqlocal HOT 6 CLOSED

carere avatar carere commented on June 2, 2024
Concurrent reads and writes

from sqlocal.

Comments (6)

carere avatar carere commented on June 2, 2024

Also, I tried to run the example code (without drizlle) from a shared worker, and it does not seems to work, but it works from the main thread.

from sqlocal.

DallasHoff avatar DallasHoff commented on June 2, 2024

One of the goals of SQLocal is to abstract away the need for your app to deal with the web worker. SQLocal is designed to be used from the main thread, and it handles the workers for you. You won't really get any benefit from trying to use a shared worker. SQLite itself does not do concurrent writes anyway.

My recommendation is to just instantiate SQLocal from the main thread and enable WAL mode. Each instance will connect to the same database and be able to read from it concurrently, and with WAL mode enabled, writes will not block reads.

const { sql } = new SQLocalDrizzle("db.sqlite3");
await sql`PRAGMA journal_mode = WAL;`;

from sqlocal.

carere avatar carere commented on June 2, 2024

@DallasHoff
Thx for your answer,

For more context, I'm buildling a trading app, and I store historical stock price and market analysis in Sqlite.

I use an "analyzer" worker to analyze the market in order to avoid blocking the main thread with big processing.

I was planning on creating a "db-access" worker which instanciate SQLite through SQLocal, do migrations and handle requests from other context through channel, in order to provide some data from SQLite.

The main thread, and the "analyzer" worker needs the data from SQLite respectively to display it and analyze it.
Other workers ("trader", "strategist", ...) would also needs the data.

Does it makes sense to you ?

Best regards,

Carere

from sqlocal.

DallasHoff avatar DallasHoff commented on June 2, 2024

Yeah, that makes sense. What problem are you running into?

from sqlocal.

carere avatar carere commented on June 2, 2024

I have no problem, I was just wondering about the best way to organize my front-end logic with workers.
Thx for this little discussion, I see now how to implement what I need 🙂

from sqlocal.

DallasHoff avatar DallasHoff commented on June 2, 2024

Sure thing!

from sqlocal.

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.