-
Notifications
You must be signed in to change notification settings - Fork 178
New issue
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
why not byte.Compare for this fastcache.go? #41
Comments
Why it should? |
byte comparison is faster? |
Why it should be? |
no need conversion of bytes to string |
there are many other optimization opportunities but this is one the most obvious. it's being used as a cache so let's make it as fast as it can be? |
which one? |
This one |
Referring to https://github.com/golang/go/blob/d0631b90a3b0934d0fe223e2d889d785d297f083/src/bytes/bytes.go#L20 , expressions like if string(bytesA) == string(bytesB) should not result in any allocation. The compiler will optimize this. |
:392
byte.compare shld be faster?
if string(k) == string(chunk[idx:idx+keyLen]) {
The text was updated successfully, but these errors were encountered: