You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
icache is a no-dependency, generic support cache library for Go with high concurrent access performance.
icache doean't require serialization, so the benchmark report you see at the bottom of the page
is what you get at the end, there is no need to marshal and unmarshal anything and waste your
valuable resources.
Features
Thread safe: icache stores the data in multiple shards and uses a separate mutex for each shard.
Generics: Using generics makes it type-safe.
Tags: icache supports tags for entries and entries with the shared tags can be dropped at the same time.
Pointer friendly: icache stores data as is. any object can be stored in icache, even pointers.
TTL: ttl can be set to any thing from 1 seconds to infinity.
Installation
icache v2 requires go v1.8.0 and above.
go get github.com/mdaliyan/icache/v2
previous version for Go < 1.18
icache v1 is compatible with Go < 1.18, and it also doean't require serialization.
it uses reflections to make sure about your data type.
Follow instructions at version v1.x.x for installation and usage.
V1 will be maintained separately.
Usage
// make a new Pot:// - to store user structs // - with expiration time of 1 Hourvarpot= icache.NewPot[user](
icache.WithTTL(time.Hour),
)
varUser=user{
ID: "foo",
Name: "John Doe",
Age: 30,
}
// set user to "foo" keypot.Set("foo", User)
// get the user previously set to "foo" key into user1 user1, err:=pot.Get("foo")
// you also can add tags to your entriespot.Set("foo", User, "tag1", "tag2")
pot.Set("faa", User, "tag1")
pot.Set("fom", User, "tag3")
// and delete multiple entries at oncepot.DropTags("tag1")