瀏覽代碼

Vibe.d: remove duplicated benchmarks (#6860)

* Vibe.d: remove duplicated benchmarks

* Vibe.d: update README
Hiroki Noda 3 年之前
父節點
當前提交
c03ce859e8
共有 3 個文件被更改,包括 10 次插入16 次删除
  1. 10 8
      frameworks/D/vibed/README.md
  2. 0 4
      frameworks/D/vibed/benchmark_config.json
  3. 0 4
      frameworks/D/vibed/config.toml

+ 10 - 8
frameworks/D/vibed/README.md

@@ -1,34 +1,36 @@
 # Vibe.D Benchmarking Test
 
-This is the Vibe.D portion of a [benchmarking test suite](../) comparing a variety of web development platforms.
+This is the Vibe.D portion of a benchmarking test suite comparing a variety of web development platforms.
 
 ### JSON Encoding Test
 
-* [JSON test controller/view](source/app.d)
+* [JSON test controller/view](source/mongodb.d)
 
 ### Data-Store/Database Mapping Test
 
-* [DB test controller/model](source/app.d)
+* [DB test controller/model](source/mongodb.d)
 
 ## Infrastructure Software Versions
 The tests were run with:
-* [Vibe.D v0.8.0-beta.5](http://vibed.org/)
+* [Vibe.D v0.9.4](http://vibed.org/)
 
 ## Test URLs
 ### JSON Encoding Test
 
-http://localhost:8080/json
+    http://localhost:8080/json
 
 ### Plaintext Test
 
-http://localhost:8080/plaintext
+    http://localhost:8080/plaintext
 
 ### Data-Store/Database Mapping Test
 
 MongoRaw:
-http://localhost:8080/db
+
+    http://localhost:8080/db
 
 ### Variable Query Test
 
 MongoDB Raw:
-http://localhost:8080/queries?queries=5
+
+    http://localhost:8080/queries?queries=5

+ 0 - 4
frameworks/D/vibed/benchmark_config.json

@@ -25,10 +25,8 @@
       "versus": "vibed"
     },
     "dmd-pgsql": {
-      "json_url": "/json",
       "db_url": "/db",
       "query_url": "/queries?queries=",
-      "plaintext_url": "/plaintext",
       "fortune_url": "/fortunes",
       "update_url": "/updates?queries=",
       "port": 8080,
@@ -71,10 +69,8 @@
       "versus": "vibed"
     },
     "ldc-pgsql": {
-      "json_url": "/json",
       "db_url": "/db",
       "query_url": "/queries?queries=",
-      "plaintext_url": "/plaintext",
       "fortune_url": "/fortunes",
       "update_url": "/updates?queries=",
       "port": 8080,

+ 0 - 4
frameworks/D/vibed/config.toml

@@ -36,8 +36,6 @@ webserver = "None"
 versus = "vibed"
 
 [dmd-pgsql]
-urls.plaintext = "/plaintext"
-urls.json = "/json"
 urls.db = "/db"
 urls.query = "/queries?queries="
 urls.update = "/updates?queries="
@@ -53,8 +51,6 @@ webserver = "None"
 versus = "vibed"
 
 [ldc-pgsql]
-urls.plaintext = "/plaintext"
-urls.json = "/json"
 urls.db = "/db"
 urls.query = "/queries?queries="
 urls.update = "/updates?queries="