Commit 66e309c5 authored by obscuren's avatar obscuren

Up deadline to reduce cpu load

parent fb528c47
...@@ -96,7 +96,7 @@ func ReadMessages(conn net.Conn) (msgs []*Msg, err error) { ...@@ -96,7 +96,7 @@ func ReadMessages(conn net.Conn) (msgs []*Msg, err error) {
for { for {
// Give buffering some time // Give buffering some time
conn.SetReadDeadline(time.Now().Add(5 * time.Millisecond)) conn.SetReadDeadline(time.Now().Add(100 * time.Millisecond))
// Create a new temporarily buffer // Create a new temporarily buffer
b := make([]byte, 1440) b := make([]byte, 1440)
n, _ := conn.Read(b) n, _ := conn.Read(b)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment