lcw
lcw copied to clipboard
Loading Cache Wrapper
Results
1
lcw issues
Sort by
recently updated
recently updated
newest added
Look at `allowed()` method implementation, https://vscode.dev/github/go-pkgz/lcw/blob/master/v2/expirable_cache.go#L156 The `maxKeys` and `maxValueSize` checks use the `>=` operator, while the `maxKeySize` check uses `>`. In `Get()` method, https://vscode.dev/github/go-pkgz/lcw/blob/master/v2/expirable_cache.go#L80 uses `>=` operator. This inconsistency...