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
getSetItemBytesOnce does not use skipLocal bug
func (c *jetCache) getSetItemBytesOnce(item *item) (b []byte, cached bool, err error) { if c.local != nil { b, ok := c.local.Get(item.key) if ok { c.statsHandler.IncrHit() c.statsHandler.IncrLocalHit() if bytes.Compare(b, notFoundPlaceholder) == 0 { return nil, true, c.errNotFound } return b, true, nil } } }
The text was updated successfully, but these errors were encountered:
e502f13
Merge pull request #16 from mgtv-tech/perf_mget
40d4ee2
fix: skipLocal and statistics, fixes #14 #15
No branches or pull requests
getSetItemBytesOnce does not use skipLocal bug
The text was updated successfully, but these errors were encountered: