Browse Source

go: Remove charset request, up connection count from 80 to 100.

Daniel Theophanes 12 years ago
parent
commit
1b2d6169dc
1 changed files with 2 additions and 2 deletions
  1. 2 2
      go/src/hello/hello.go

+ 2 - 2
go/src/hello/hello.go

@@ -29,11 +29,11 @@ type Fortune struct {
 }
 }
 
 
 const (
 const (
-	ConnectionString   = "benchmarkdbuser:benchmarkdbpass@tcp(localhost:3306)/hello_world?charset=utf8"
+	ConnectionString   = "benchmarkdbuser:benchmarkdbpass@tcp(localhost:3306)/hello_world"
 	WorldSelect        = "SELECT id, randomNumber FROM World where id = ?"
 	WorldSelect        = "SELECT id, randomNumber FROM World where id = ?"
 	FortuneSelect      = "SELECT id, message FROM Fortune;"
 	FortuneSelect      = "SELECT id, message FROM Fortune;"
 	WorldRowCount      = 10000
 	WorldRowCount      = 10000
-	MaxConnectionCount = 80
+	MaxConnectionCount = 100
 )
 )
 
 
 var (
 var (