Git Product home page Git Product logo

Comments (5)

satoshinm avatar satoshinm commented on August 17, 2024

Emscripten has IDBFS, IndexedDB based, https://kripken.github.io/emscripten-site/docs/api_reference/Filesystem-API.html

Found this when debugging, may not be representative of normal usage, but profiling often shows SQLite taking a lot of time:

screen shot 2017-04-03 at 9 51 29 pm

from netcraft.

satoshinm avatar satoshinm commented on August 17, 2024

Maybe replace sqlite with a hand-tailored binary format? How many of the database-y features are really needed? Looks like it is fairly well abstracted in src/db.h and src/db.c (contains SQL).

from netcraft.

satoshinm avatar satoshinm commented on August 17, 2024

Would lmdb https://en.wikipedia.org/wiki/Lightning_Memory-Mapped_Database be a viable alternative? Or write something custom from scratch.

from netcraft.

satoshinm avatar satoshinm commented on August 17, 2024

There may be problems with the included sqlite compiling under emscripten, found this old pull request: emscripten-core/emscripten#1144 "Added SQLite3 distribution tailored for Emscripten ASM.js compilation" - it is said to remove function pointer casting for asm.js compilation. There is also https://github.com/kripken/sql.js (how does it differ from building sqlite with emscripten with no changes? is https://github.com/kripken/sql.js/commits/master/c/sqlite3.c unmodified?)

from netcraft.

satoshinm avatar satoshinm commented on August 17, 2024

Note there is a USE_CACHE option in src/config.h, set to 1. The database is always used in offline mode. But in online mode (used #localhost connecting to WebSandboxMC), changed to 0, comparing the performance graph in Chrome. Before (with USE_CACHE 1), see the sqlite3_exec calls:

screen shot 2017-05-07 at 8 04 02 pm

after, with USE_CACHE 0, less heavy:

screen shot 2017-05-07 at 8 03 09 pm

from netcraft.

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.