Browse Source

Merge pull request #1977 from valyala/go-raw-std

Go: renamed go-raw* to go-std* according to the discussion at #1968
Mike Smith 9 years ago
parent
commit
ebd5838b86

+ 2 - 2
.travis.yml

@@ -58,9 +58,9 @@ env:
     - "TESTDIR=Go/fasthttp-mysql"
     - "TESTDIR=Go/fasthttp-postgresql"
     - "TESTDIR=Go/gin"
-    - "TESTDIR=Go/go-raw"
     - "TESTDIR=Go/goji"
-    - "TESTDIR=Go/go-raw-mongodb"
+    - "TESTDIR=Go/go-std-mongodb"
+    - "TESTDIR=Go/go-std-mysql"
     - "TESTDIR=Go/revel"
     - "TESTDIR=Go/revel-jet"
     - "TESTDIR=Go/revel-qbs"

+ 0 - 0
frameworks/Go/go-raw-mongodb/README.md → frameworks/Go/go-std-mongodb/README.md


+ 2 - 2
frameworks/Go/go-raw-mongodb/benchmark_config.json → frameworks/Go/go-std-mongodb/benchmark_config.json

@@ -20,9 +20,9 @@
       "webserver": "None",
       "os": "Linux",
       "database_os": "Linux",
-      "display_name": "go-raw-mongodb",
+      "display_name": "go-std-mongodb",
       "notes": "mongodb implementation for go net/http",
       "versus": "go"
     }
   }]
-}
+}

+ 0 - 0
frameworks/Go/go-raw-mongodb/setup.bat → frameworks/Go/go-std-mongodb/setup.bat


+ 0 - 0
frameworks/Go/go-raw-mongodb/setup.sh → frameworks/Go/go-std-mongodb/setup.sh


+ 0 - 0
frameworks/Go/go-raw-mongodb/source_code → frameworks/Go/go-std-mongodb/source_code


+ 0 - 0
frameworks/Go/go-raw-mongodb/src/hello/hello.go → frameworks/Go/go-std-mongodb/src/hello/hello.go


+ 0 - 0
frameworks/Go/go-raw-mongodb/templates/fortune.html → frameworks/Go/go-std-mongodb/templates/fortune.html


+ 0 - 0
frameworks/Go/go-raw-mongodb/templates/layout.html → frameworks/Go/go-std-mongodb/templates/layout.html


+ 0 - 0
frameworks/Go/go-raw/README.md → frameworks/Go/go-std-mysql/README.md


+ 3 - 3
frameworks/Go/go-raw/benchmark_config.json → frameworks/Go/go-std-mysql/benchmark_config.json

@@ -20,7 +20,7 @@
       "webserver": "None",
       "os": "Linux",
       "database_os": "Linux",
-      "display_name": "go-raw",
+      "display_name": "go-std-mysql",
       "notes": "",
       "versus": "go"
     },
@@ -41,7 +41,7 @@
       "webserver": "None",
       "os": "Linux",
       "database_os": "Linux",
-      "display_name": "go-interpolate",
+      "display_name": "go-std-mysql-interpolate",
       "notes": "",
       "versus": "go"
     },
@@ -64,7 +64,7 @@
       "webserver": "None",
       "os": "Linux",
       "database_os": "Linux",
-      "display_name": "go-prefork",
+      "display_name": "go-std-prefork-mysql",
       "notes": "",
       "versus": "go"
     }

+ 0 - 0
frameworks/Go/go-raw/setup.bat → frameworks/Go/go-std-mysql/setup.bat


+ 0 - 0
frameworks/Go/go-raw/setup.sh → frameworks/Go/go-std-mysql/setup.sh


+ 0 - 0
frameworks/Go/go-raw/setup_prefork.sh → frameworks/Go/go-std-mysql/setup_prefork.sh


+ 0 - 0
frameworks/Go/go-raw/source_code → frameworks/Go/go-std-mysql/source_code


+ 1 - 1
frameworks/Go/go-raw/src/hello/hello.go → frameworks/Go/go-std-mysql/src/hello/hello.go

@@ -62,7 +62,7 @@ const (
 	// `interpolateParams=true` enables client side parameter interpolation.
 	// It reduces round trips without prepared statement.
 	//
-	// We can see difference between prepared statement and interpolation by comparing go-raw and go-raw-interpolate
+	// We can see difference between prepared statement and interpolation by comparing go-std-mysql and go-std-mysql-interpolate
 	connectionString = "benchmarkdbuser:benchmarkdbpass@tcp(%s:3306)/hello_world?interpolateParams=true"
 	worldSelect      = "SELECT id, randomNumber FROM World WHERE id = ?"
 	worldUpdate      = "UPDATE World SET randomNumber = ? WHERE id = ?"