Home > Web Front-end > JS Tutorial > Assassin ⚡️ - An open source, free database for killing slow webpages

Assassin ⚡️ - An open source, free database for killing slow webpages

DDD
Release: 2025-01-06 03:24:48
Original
764 people have browsed it

Assassin ⚡️ - kill slow webpages

Assassin works to kill database transactions that block the UI.

Database operations can be slow, but no existing databases solve this problem the obvious way: outsource difficult tasks to web workers.

Assassin ⚡️ - An open source, free database for killing slow webpages

I wanted to make a database that is:

  • Open source
  • Responsive
  • Decentralized
  • Optimized for web workers
  • Designed for private browsing

That's why I created my own database with JavaScript.

Features ?

? Lightweight : Shipped with less than 100 lines of client side code.

⚖️ Decentralized : Your database has no single point of failure. If the server goes down, your data is easy to retrieve.

? Works in private browsing : I researched databases like LevelDB, PouchDB, and Gun, which rely on IndexedDB for client-side storage. I wanted these databases to be effective, but I ended up creating this database partly because IndexedDB is disabled in private browsing, which means none of these databases work for me.

Methods:

  • killer.connect(url) - Connect to the server.
  • killer.create(key,value) - Add an entry to the database.
  • killer.update(key,new value) - Update the value of a key in the database.
  • killer.delete(key) - Delete an entry in the database.
  • Read the database - Inside a web worker or the main thread, you can access the database through the variable called database.

Architecture:

  • Data Model : Assassin is a key/value store that supports mapping a key to its corresponding value.
  • System Architecture : The DAT protocol distributes and hosts data between many computers, so there is no one location where data is stored. Assassin relies on the the DAT protocol for data persistence. The metadata of the key-value pairs are stored in a distributed trie structure.
  • Isolation Levels : The isolation level is determined by the end user of the database. Assassin is designed to have a low isolation level.
  • Storage Model : Assassin sends data to the server, which then stores the metadata in the distributed file system Hyperdrive, which is built on the DAT protocol. The data itself is distributed and hosted between multiple peers.
  • Highly Available : Assassin is highly available and eventually consistent. Assassin always saves the last edits made to the database when conflicts arise. This CRDT may change later.

Why is it called Assassin?

  • My personal website currently uses the Gun database.
  • Gun has many features I like and the founder is pretty nice.
  • Gun stopped working for me.
  • Gun's storage adapter RAD relies on IndexedDB, which is disabled in private browsing.
  • Gun syncs data peer to peer through WebRTC, which doesn't work in web workers.
  • Assassin is sort of (seriously, very little) like Gun but for web workers.
  • Gun worker = Assassin ?

Built with ?

  • Hyperdrive - Thanks for building an abstraction layer on top of the DAT protocol!
  • HTML - For creating the web demo
  • CSS - For styling the web demo
  • JavaScript - For logic
  • Node.js - To serve the logic

Make sure to share your opinion on:

  • the Assassin GitHub repository
  • the Gitter server

And if you really want to help make Assassin better, contribute to the GitHub repo!

Assassin is open source, and always will be.

Support me on:

  • Ko-Fi

Star the repo on GitHub, Tweet, and share among your friends, teams and contacts!

The above is the detailed content of Assassin ⚡️ - An open source, free database for killing slow webpages. For more information, please follow other related articles on the PHP Chinese website!

source:dev.to
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template