groupcache
Tile38
groupcache | Tile38 | |
---|---|---|
14 | 9 | |
13,095 | 9,277 | |
1.0% | 0.3% | |
1.8 | 6.9 | |
4 months ago | 5 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.
Tile38
-
Show HN: TG – Fast geometry library in C
[2] https://github.com/tidwall/tile38
- PostgreSQL: No More Vacuum, No More Bloat
-
Your Data Fits in RAM
I actually worked on a project that did this. We used a database called "Tile38" [1] which used an R-Tree to make geospatial queries speedy. It was pretty good.
Our dataset was ~150 GiB, I think? All in RAM. Took a while to start the server, as it all came off disk. Could have been faster. (It borrowed Redis's query language, and its storage was just "store the commands the recreate the DB, literally", IIRC. Dead simple, but a lot of slack/wasted space there.)
Overall not a bad database. Latency serving out of RAM was, as one should/would expect, very speedy!
[1]: https://tile38.com/
-
Redcon - Redis compatible server framework for Rust
I ported it from Go and use it for my Tile38 project.
- Tile38 - a geolocation data store, spatial index, and realtime geofence
- Path hints for B-trees can bring a performance increase of 150% – 300%
- How do I implement push notifications on a 10 mile radius from a certain user?
What are some alternatives?
BigCache - Efficient cache for gigabytes of data written in Go.
vitess - Vitess is a database clustering system for horizontal scaling of MySQL.
go-cache - An in-memory key:value store/cache (similar to Memcached) library for Go, suitable for single-machine applications.
kingshard - A high-performance MySQL proxy
ledisdb - A high performance NoSQL Database Server powered by Go