We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pkg/cache
We recently introduced a new cache package in #6733 that supports having CacheableEntity and the whole object can be stored in the Cache.
CacheableEntity
Previously only Marshaled data was being stored https://github.com/SigNoz/signoz/blob/main/pkg/query-service/cache/inmemory/cache.go#L29
We can now deprecate old cache implementation residing in https://github.com/SigNoz/signoz/blob/main/pkg/query-service/cache/inmemory/cache.go, and can completely use the new Cache package https://github.com/SigNoz/signoz/tree/main/pkg/cache for Redis and in-memory cache.
The text was updated successfully, but these errors were encountered:
shivanshuraj1333
No branches or pull requests
We recently introduced a new cache package in #6733 that supports having
CacheableEntity
and the whole object can be stored in the Cache.Previously only Marshaled data was being stored https://github.com/SigNoz/signoz/blob/main/pkg/query-service/cache/inmemory/cache.go#L29
We can now deprecate old cache implementation residing in https://github.com/SigNoz/signoz/blob/main/pkg/query-service/cache/inmemory/cache.go, and can completely use the new Cache package https://github.com/SigNoz/signoz/tree/main/pkg/cache for Redis and in-memory cache.
The text was updated successfully, but these errors were encountered: