14 lines
216 B
Go
14 lines
216 B
Go
package store
|
|
|
|
const (
|
|
// TxRetryHardLimit is the absolute maximum retries we'll allow
|
|
TxRetryHardLimit = 100
|
|
|
|
DefaultSliceCapacity = 1000
|
|
|
|
MinEnsureFetchLimit = 10
|
|
MaxRefetches = 100
|
|
|
|
MaxLimit = 1000
|
|
)
|