forked from mirror/ledisdb
Merge pull request #93 from xlab/patch-1
Increase MaxValueSize for a reasonable value
This commit is contained in:
commit
40a0f88d85
|
@ -81,7 +81,7 @@ const (
|
||||||
MaxSetMemberSize int = 1024
|
MaxSetMemberSize int = 1024
|
||||||
|
|
||||||
//max value size
|
//max value size
|
||||||
MaxValueSize int = 10 * 1024 * 1024
|
MaxValueSize int = 1024 * 1024 * 1024
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
|
Loading…
Reference in New Issue