Threads for jordi

    1. 6

      we already had a DB in the browser, it’s called localStorage /ducks

        1. 3

          Never ever use localstorage it’s broken by design.

          Indexeddb is a real db though

              1. 1

                Is every key-value storage system not database enough for you? :)

                1. 2

                  I guess everything is a database if you are brave enough :D

            1. 16

              The issue here is that developers tend to overengineer.

              Did we (developers) read somewhere that SQLite cannot support concurrent writes? Let’s discard it for the new project, which will never require concurrent writes and will not need to be easily scalable.

              We have to realize that everything will start to get better when we start pushing simple technologies to their limits instead of overengineering every single piece of our architecture.