go-deadlock
rueidis
go-deadlock | rueidis | |
---|---|---|
6 | 28 | |
1,017 | 1,274 | |
- | - | |
4.2 | 8.6 | |
about 2 months ago | over 1 year ago | |
Go | Go | |
Apache License 2.0 | Apache License 2.0 |
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.
go-deadlock
-
Waffles, Fries, Beer and Developers; Notes from FOSDEM 2023
sasha-s/go-deadlock: online deadlock detection in go
- Online deadlock detection in go (Golang)
-
Concurrency mutex patterns general question
Not quite an answer but this helped with the headache of debugging deadlocks for our team https://github.com/sasha-s/go-deadlock Its a drop in replacement and will error out when it detects deadlocks.
-
Using Go's RWMutex recursively is a bug
A truly underrated static analyzer in Go is github.com/sasha-s/go-deadlock
-
Mastering concurrency in Go
go-deadlock library
-
Finding Deadlocks in a Golang Database
No mention of go-deadlock? It's amazing tool that will save you so much time. I found a lot of lock-ordering issues that were just disasters waiting to happen.
rueidis
- Redis with golang
-
understanding a opensource project - golang beginner
I have a redis client library which code base is small while it uses some advanced techniques to achieve better performance. I think it is worth reading https://github.com/rueian/rueidis
-
Go-Redis Is Now an Official Redis Client
Want to say +1 for Rueidis. It's a very fast, well-maintained library. It's already adopted by several large open-source projects (see https://github.com/rueian/rueidis/network/dependents). Nothing to say against go-redis though - it's very good too.
-
rueidis v0.0.90: an almost zero allocation redis client library
Hi folks, I am pleased to introduce you rueidis v0.0.90, a Redis client library that can help you access Redis server with little or almost zero allocation on your application side.
-
Redis driver supports at-least-once delivery
Hi rtsov, I also like to have this kind of amqp functionality in rueidis https://github.com/rueian/rueidis.
-
can I use go-cache as session manager ?
You can also use redis to store sessions remotely, and use its client-side caching feature for better performance: https://github.com/rueian/rueidis
-
What have you learnt from your Golang experience ?
All these help me build a fast redis client library: https://github.com/rueian/rueidis
-
Concurrency mutex patterns general question
Use redis+client-side caching to implement your replicas. This can help you: https://github.com/rueian/rueidis
-
rueian/rueidis v0.0.81: A fast Redis client that supports Client-Side Caching and Auto Pipelining
Actually it is also beneficial for applications using redis for distributed locks magement. Redis can now notify clients the state of their locks proactively. https://github.com/rueian/rueidis/tree/master/rueidislock
-
Best packages?
rueidis For fast client-side caching, distributed locking and Pub/Sub with Redis.
What are some alternatives?
pgcapture - A scalable Netflix DBLog implementation for PostgreSQL
redis - Type-safe Redis client for Golang [Moved to: https://github.com/redis/go-redis]
size-limited-queue - Learn what sync.Cond is
Redis - Redis Go client
debugger - Debugging helper for Go
go-json - Fast Go JSON encoder for large arrays of objects
gofl - Generic Free List implementation to reuse memory and avoid allocations
golang-standards/project-layout - Standard Go Project Layout
go-trylock - TryLock support on read-write lock for Golang
go - The Go programming language
arenaskl - Fast, lock-free, arena-based Skiplist implementation in Go that supports iteration in both directions.
rueidis - A fast Golang Redis client that supports Client Side Caching, Auto Pipelining, Generics OM, RedisJSON, RedisBloom, RediSearch, etc.