Skip to content

Commit

Permalink
1.0.8-SNAPSHOT
Browse files Browse the repository at this point in the history
fix default buffer size from 8192 to 1024*1024
  • Loading branch information
leonchen83 committed Aug 30, 2016
1 parent 3b2f2ce commit 13dcac8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public static Configuration defaultSetting() {
/**
* redis input stream buffer size
*/
private int bufferSize = 8192;
private int bufferSize = 1024 * 1024;

/**
* auth password
Expand Down

0 comments on commit 13dcac8

Please sign in to comment.