storage: reduce default lookup limit to 500

Change-Id: Ic0adbf2f519babd780237d34c60636c1a1606762
This commit is contained in:
Egon Elbre 2020-04-13 19:00:23 +03:00
parent 83bbc7a37e
commit 1cad686e9b

View File

@ -48,7 +48,7 @@ type Values []Value
type Items []ListItem
// DefaultLookupLimit is the default lookup limit for storage implementations.
const DefaultLookupLimit = 10000
const DefaultLookupLimit = 500
// ListItem returns Key, Value, IsPrefix.
type ListItem struct {