mirror of
https://bitbucket.org/s_l_teichmann/mtsatellite
synced 2024-11-08 03:00:26 +01:00
Uplift max bulk string size for redisalize server to 8MB. Big TNT explosion seem to write big blocks into the database.
This commit is contained in:
parent
4f49d114c6
commit
1acfd26e80
|
@ -13,6 +13,8 @@ import (
|
|||
"strconv"
|
||||
)
|
||||
|
||||
const maxBulkStringSize = 8 * 1024 * 1024
|
||||
|
||||
type RedisConsumer interface {
|
||||
ConsumeInteger(int64) bool
|
||||
ConsumeArray(int64) bool
|
||||
|
@ -92,7 +94,7 @@ func (rp *RedisParser) bulkString(line []byte) bool {
|
|||
case i == 0:
|
||||
return rp.consumer.ConsumeBulkString([]byte{})
|
||||
default:
|
||||
if i >= 4*1024*1024 { // 4MB should be sufficient
|
||||
if i > maxBulkStringSize { // prevent denial of service.
|
||||
return rp.consumer.ConsumeError(
|
||||
fmt.Errorf("Bulk string too large (%d bytes).\n", i))
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user