35 skills found · Page 1 of 2
mgtv-tech / Jetcache GoRedis cache library for Go
chenyahui / Gin Cache:rocket: A high performance gin middleware to cache http response. Compared to gin-contrib/cache, It has a huge performance improvement. 高性能gin缓存中间件,相比于官方版本,有巨大性能提升。
tarndt / ShardedsingleflightA sharded wrapper for golang.org/x/sync/singleflight for high contention enviroments
samber / Go Singleflightx🧬 x/sync/singleflight but with generics, batching, sharding and nullable result
janos / SingleflightDuplicate function call suppression with context
mongofs / Scache一个基于go语言实现的内存缓存,通过lru算法实现定时任务、异步任务、singleflight等内容,使用者可以基于此组件代替redis旁路由相关功能获取更好的性能
marwan-at-work / Singleflightx/sync/singleflight but with Go 1.18 generics
samber / Go Batchify🕹️ Group and deduplicate concurrent tasks
ihciah / Singleflight AsyncNo description available
gsquire / SingleflightRust port of Go's singleflight package
yangchenxing / Go SingleflightPackage singleflight provides a duplicate function call suppression mechanism.
twmb / Go CacheA concurrency safe, mostly lock-free, singleflight request collapsing generic cache with support for stale values.
aarondwi / SingleflightCoalesce multiple identical calls into one, preventing thundering-herd/stampede to database/other backends
Jaskey / Singleflightsingleflight in Java
go-demo / Singleflight Demosingleflight包原理解析
rodaine / ExecutorAction/Executor (Command) Pattern Library for Concurrent Workloads
PureWhiteWu / Async Singleflightrust async singleflight
abema / CremaA Go cache library with probabilistic revalidation and singleflight loading
brunomvsouza / SingleflightA type-safe wrapper around `golang.org/x/sync/singleflight` that adds generic type support. Provides the same duplicate function call suppression mechanism with compile-time type safety through `Group[K ~string, V any]` and `Result[V any]`.
DanielLiu1123 / Single FlightSingleFlight for Java — Collapse concurrent duplicate calls into one.