groupcache
rqlite
groupcache | rqlite | |
---|---|---|
14 | 124 | |
13,107 | 16,349 | |
1.1% | 1.0% | |
1.8 | 9.8 | |
4 months ago | 7 days ago | |
Go | Go | |
Apache License 2.0 | MIT License |
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.
groupcache
- Show HN: Pocache, preemptive optimistic caching for Go
- [imcache] A generic in-memory cache Go library. Feedback appreciated.
-
DREAMEMO: An out-of-the-box, high-scalability, modular-design distributed cache
As shown in the title, DREAMEMO is a distributed cache with out-of-the-box, high-scalability, modular-design features.The groupcache implementation is referenced, and re-structured, specific module differentiation is as follows:
-
Sourcehut will blacklist the Go module mirror
I remember one of the first real-world uses of Go being the groupcache package: https://github.com/golang/groupcache (to serve Chrome downloads, IIRC?)
> comes with a cache filling mechanism. Whereas memcached just says "Sorry, cache miss", often resulting in a thundering herd of database (or whatever) loads from an unbounded number of clients (which has resulted in several fun outages), groupcache coordinates cache fills such that only one load in one process of an entire replicated set of processes populates the cache, then multiplexes the loaded value to all callers.
-
Distributed fault-tolerant persistent atomic counter in golang
I read that group cache (https://github.com/golang/groupcache) can be used to sync servers around a key.
-
How can you ensure all Microservices have finished their tasks?
I've not tried this myself, but I've seen it suggested to use groupcache (https://github.com/golang/groupcache) to sync your servers.
- What is for you the project who represents the best the power of Golang ?
-
go-generics-cache: An in-memory key:value store/cache library for Go Generics
https://github.com/golang/groupcache is managing distributed caching that addresses thundering herd problem of memcache.
-
How to Create HTTP Cache Service in Golang?
How it goes sometimes. Check out https://github.com/golang/groupcache and of course the AWS golang SDK.
-
Redis inside cluster
There is also groupcache, written by the same author as memcached, but better.
rqlite
-
The definitive guide to using Django with SQLite in production đź’ˇ
rqlite: The lightweight, user-friendly, distributed relational database built on SQLite
-
How rqlite – the lightweight distributed database built on SQLite – is tested
rqlite has been in development for about a decade too!
https://github.com/rqlite/rqlite/blob/master/CHANGELOG.md#10...
- Rqlite: The distributed relational database built on SQLite
-
Rearchitecting: Redis to SQLite
rqlite[1] could basically do this, if you use read-only nodes[2]. But it's not quite a drop-in replacement for SQLite at the write-side. But from point of view of a clients at the edge, they see a SQLite database being updated which they can directly read[3].
That said, it may not be practical to have hundreds of read-only nodes, but for moderate-size needs, should work fine..
Disclaimer: I'm the creator of rqlite.
[1] https://rqlite.io/
[2] https://rqlite.io/docs/clustering/read-only-nodes/
[3] https://rqlite.io/docs/guides/direct-access/
- Rqlite: Lightweight, user-friendly, distributed relational db built on SQLite
-
rqlite: A lightweight, user-friendly, distributed relational db built on SQLite
Not particularly. A C compiler is only needed for the SQLite source code.
I originally provided these musl-based builds so I could provide rqlite Docker images based on Alpine[1]. But now the Docker release process simply builds rqlite from the source during the image-creation process[2].
[1] https://hub.docker.com/_/alpine
[2] https://github.com/rqlite/rqlite/blob/master/Dockerfile
- Show HN: Rqlite and Docker and SQLite-vec – highly-available Vector Search
-
CockroachDB License Change
Not Jepsen tested but I'd like rqlite [0] would be in the running and meet the requirements.
0. https://rqlite.io/
- Show HN: Drop-In SQS Replacement Based on SQLite
-
Local First, Forever
I’ve been pondering doing something like this with SQLite. The primary db is local/embedded on the user’s machine and use something like https://github.com/rqlite/rqlite to sync on the backend.
It also means it would be fairly trivial to allow users/orgs to host their own “backend” as well.
What are some alternatives?
go-cache - An in-memory key:value store/cache (similar to Memcached) library for Go, suitable for single-machine applications.
cockroach - CockroachDB — the cloud native, distributed SQL database designed for high availability, effortless scale, and control over data placement.
BigCache - Efficient cache for gigabytes of data written in Go.
dqlite - Embeddable, replicated and fault-tolerant SQL engine.
ledisdb - A high performance NoSQL Database Server powered by Go
libsql - libSQL is a fork of SQLite that is both Open Source, and Open Contributions.