marmot VS wordpress-playground

Compare marmot vs wordpress-playground and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
marmot wordpress-playground
33 22
1,628 1,527
- 1.2%
8.6 9.7
3 months ago about 23 hours ago
Go JavaScript
MIT License GNU General Public License v3.0 only
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

marmot

Posts with mentions or reviews of marmot. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-11.
  • Distributed SQLite: Paradigm shift or hype?
    1 project | news.ycombinator.com | 9 Apr 2024
    If you're willing to accept eventual consistency (a big ask, but acceptable in some scenarios) then there are options like marmot [1] that replicate cdc over nats.

    [1]: https://github.com/maxpert/marmot

  • Marmot: Multi-writer distributed SQLite based on NATS
    1 project | /r/hypeurls | 11 Dec 2023
    4 projects | news.ycombinator.com | 11 Dec 2023
  • Why you should probably be using SQLite
    8 projects | news.ycombinator.com | 27 Oct 2023
  • The Raft Consensus Algorithm
    5 projects | news.ycombinator.com | 3 Sep 2023
    I've written a whole SQLite replication system that works on top of RAFT ( https://github.com/maxpert/marmot ). Best part is RAFT has a well understood and strong library ecosystem as well. I started of with libraries and when I noticed I am reimplementing distributed streams, I just took off the shelf implementation (https://docs.nats.io/nats-concepts/jetstream) and embedded it in system. I love the simplicity and reasoning that comes with RAFT. However I am playing with epaxos these days (https://www.cs.cmu.edu/~dga/papers/epaxos-sosp2013.pdf), because then I can truly decentralize the implementation for truly masterless implementation. Right now I've added sharding mechanism on various streams so that in high load cases masters can be distributed across nodes too.
  • SQLedge: Replicate Postgres to SQLite on the Edge
    9 projects | news.ycombinator.com | 9 Aug 2023
    Very interesting! I have question ( out of my experience in https://github.com/maxpert/marmot ) how do get around the boot time, specially when a change log of table is pretty large in Postgres? I've implemented snapshotting mechanism in Marmot as part of quickly getting up to speed. At some level I wonder if we can just feed this PG replication log into NATS cluster and Marmot can just replicate it across the board.
  • Show HN: Blueprint for a distributed multi-region IAM with Go and CockroachDB
    4 projects | news.ycombinator.com | 8 Aug 2023
    One of the reasons I started writing Marmot (https://maxpert.github.io/marmot/) was for replicating bunch of tables across regions that were read heavy. I even used it for cache replication (because who cares if it’s a cache miss, but a hit will save me time and money). It’s hard to make such blue prints in early days of product, and by the time you hit a true growth almost everyone builds a custom solution for multi-region IAM.
  • Stalwart All-in-One Mail Server (IMAP, JMAP, SMTP)
    4 projects | news.ycombinator.com | 18 Jul 2023
    Amazing I was just looking for a good mail server to configure for my demo. Which reminds me since you folks have mentioned LiteStream, have you tried Marmot (https://github.com/maxpert/marmot); I recently configured Isso with Marmot to scale it out horizontally (https://maxpert.github.io/marmot/demo). I am super curious what kind of write workload on a sub thousand people organization will have and if Marmot can help scale it horizontally without Foundation DB. I always find the the convenience of SQLite amazing.
  • Marmot: A distributed SQLite replicator built on top of NATS
    1 project | news.ycombinator.com | 5 Jul 2023
  • LiteFS Cloud: Distributed SQLite with Managed Backups
    9 projects | news.ycombinator.com | 5 Jul 2023
    Great that you brought it up. I will fill in the perspective of what I am doing for solving this in Marmot (https://github.com/maxpert/marmot). Today Marmot already records changes via installing triggers to record changes of a table, hence all the offline changes (while Marmot is not running) are never lost. Today when Marmot comes up after a long offline (depending upon max_log_size configuration), it realizes that and tries to catch up changes via restoring a snapshot and then applying rest of logs from NATS (JetStream) change logs. I am working on change that will be publishing those change logs to NATS before it restores snapshots, and once it reapplies those changes after restoring snapshot everyone will have your changes + your DB will be up to date. Now in this case one of the things that bothers people is the fact that if two nodes coming up with conflicting rows the last writer wins.

    For that I am also exploring on SQLite-Y-CRDT (https://github.com/maxpert/sqlite-y-crdt) which can help me treat each row as document, and then try to merge them. I personally think CRDT gets harder to reason sometimes, and might not be explainable to an entry level developers. Usually when something is hard to reason and explain, I prefer sticking to simplicity. People IMO will be much more comfortable knowing they can't use auto incrementing IDs for particular tables (because two independent nodes can increment counter to same values) vs here is a magical way to merge that will mess up your data.

wordpress-playground

Posts with mentions or reviews of wordpress-playground. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-08-15.
  • Things you forgot because of React
    14 projects | news.ycombinator.com | 15 Aug 2023
    Sorry friend, WordPress already beat you to it: https://github.com/WordPress/wordpress-playground
  • WordPress Playground: A WordPress that runs entirely in the browser
    1 project | /r/hackernews | 16 Jul 2023
    1 project | /r/patient_hackernews | 16 Jul 2023
  • WordPress Playground: A WordPress that runs in the browser
    9 projects | news.ycombinator.com | 14 Jul 2023
    > Is there a reason why using OPFS directly from SQLite doesn't work?

    I'm guessing this means using SQLite WASM's built-in OPFS integration as described in these articles:

    - sqlite3 WebAssembly documentation - Persistent Storage Options: OPFS - https://sqlite.org/wasm/doc/trunk/persistence.md#opfs

    - SQLite Wasm in the browser backed by the Origin Private File System - https://developer.chrome.com/blog/sqlite-wasm-in-the-browser...

    Within the Playground, SQLite interacts with the database file in MEMFS only, and the Playground coordinates the syncing from MEMFS to OPFS.

    https://github.com/WordPress/wordpress-playground/tree/trunk...

    The reason for this, I believe, is that the primary use case is/was to have the entire file system in memory, including SQLite's database file. This was the original implementation, and is still the default behavior. Persistence was later added as an optional feature.

    The good news is that browser support for OPFS seems to be getting better. From the SQLite docs:

      As of March 2023 the following browsers are known to have the necessary APIs:
  • WordPress Playground
    3 projects | dev.to | 27 Jun 2023
    One of the most exciting things at WordCamp Europe 2023 for me was discovering how far along the WordPress Playground project is. If you haven’t heard of the playground before, it’s a full version of WordPress, running directly in your browser!
  • WCGI: WebAssembly and CGI
    1 project | news.ycombinator.com | 6 Apr 2023
    WordPress has an official WebAssembly build for the browser and Node.js: https://developer.wordpress.org/playground https://github.com/WordPress/wordpress-playground

    (Disclosure: I'm the creator)

  • WordPress testing official SQLite Support
    5 projects | news.ycombinator.com | 16 Dec 2022
    I love the work going on there at WasmLabs, especially enjoying the articles with in-depth technical explorations.

    After the article about running WordPress in the browser was published, there's a new project called WordPress Playground which is gradually preparing NPM or Composer packages to make it easier for people to run it.

    https://github.com/WordPress/wordpress-playground/

    They've been doing very detailed work, like making some patches to PHP and SQLite for improved compatibility with Emscripten, etc. It seems there's a lot of overlap with what WasmLabs has achieved and probably have continued to develop further. Perhaps there's an opportunity for collaboration.

  • WordPress WASM
    1 project | /r/patient_hackernews | 25 Sep 2022
    1 project | /r/hackernews | 25 Sep 2022
  • Hacker News top posts: Sep 25, 2022
    4 projects | /r/hackerdigest | 25 Sep 2022
    WordPress WASM\ (28 comments)

What are some alternatives?

When comparing marmot and wordpress-playground you can also consider the following projects:

pocketbase - Open Source realtime backend in 1 file

dod - DOS on dope. The last MVC Web framework you'll ever need

cr-sqlite - Convergent, Replicated SQLite. Multi-writer and CRDT support for SQLite

webrcade - Feed-driven gaming

litefs - FUSE-based file system for replicating SQLite databases across a cluster of machines

wapm-cli - 📦 WebAssembly Package Manager (CLI)

mssql-changefeed

wp-sqlite-db - A single file drop-in for using a SQLite database with WordPress. Based on the original SQLite Integration plugin.

rqlite - The lightweight, distributed relational database built on SQLite.

Platform - Qbix Platform for powering Social Apps (http://qbix.com/platform)

sqlite3-preload - LD_PRELOAD hack to execute SQLite statements when an SQLite database is opened

website - WebAssembly website