Git Product home page Git Product logo

Comments (6)

FiloSottile avatar FiloSottile commented on June 12, 2024

https://www.sqlite.org/sharedcache.html

Enabling shared-cache for an in-memory database allows two or more database connections in the same process to have access to the same in-memory database.

Without shared-cache, each connection has its own memory database. It should probably be the default for :memory: databases.

from sqlite.

crawshaw avatar crawshaw commented on June 12, 2024

Yeah I think this new value is the right default. I hit a couple of tricky limits of the shared cache that are not intuitive (the granularity of the write locks appears to be coarser in the shared-cache, which can be awkward depending on your table design).

It would be nice to fix those limits in sqlite and always use shared cache mode.

from sqlite.

FiloSottile avatar FiloSottile commented on June 12, 2024

I definitely also find the new default more appropriate in general, one of my applications was deadlocking just by trying to make a write for each row in a select, because write locks exclude all reads with the shared cache.

However when opening a memory database the semantics of non-shared cache make little sense, so I think it should be on by default when the target is :memory:

from sqlite.

crawshaw avatar crawshaw commented on June 12, 2024

Yes that makes sense.

from sqlite.

nilium avatar nilium commented on June 12, 2024

This should probably still be open. I just realized "not fix #57" still set off GitHub's issue closer.

from sqlite.

AdamSLevy avatar AdamSLevy commented on June 12, 2024

Should this still be open? It seems that the user can solve their problem by enabling shared cache via the URI.

from sqlite.

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.