mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-07 17:15:56 +00:00
increased buffer
This commit is contained in:
parent
b56ba9d854
commit
dce5ac60c4
1 changed files with 2 additions and 2 deletions
|
|
@ -40,8 +40,8 @@ func init() {
|
|||
func newConnection(transport *TcpTransport, conn net.Conn, proc *GUID) *connection {
|
||||
p := new(connection)
|
||||
p.transport = transport
|
||||
p.outbox = make(chan *db.Message, 100)
|
||||
p.inbox = make(chan *db.Message, 100)
|
||||
p.outbox = make(chan *db.Message, 2048)
|
||||
p.inbox = make(chan *db.Message, 2048)
|
||||
p.conn = conn
|
||||
p.process = proc
|
||||
p.exit = make(chan int)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue