Browse Source

ASP.NET Mono benchmark_config and README

Pēteris Ņikiforovs 12 years ago
parent
commit
ef767ef1a3
2 changed files with 38 additions and 7 deletions
  1. 22 5
      aspnet-mono/README.md
  2. 16 2
      aspnet-mono/benchmark_config

+ 22 - 5
aspnet-mono/README.md

@@ -6,17 +6,34 @@
 
 `http://localhost:8080/json`
 
-### ADO.NET with MySQL
+### ADO.NET
 
-`http://localhost:8080/mysql-raw?queries=10`
+#### MySQL
 
-### Entity Framework with MySQL
+`http://localhost:8080/adonet/mysql`
+`http://localhost:8080/adonet/mysql?queries=10`
+
+#### PostgreSQL
+
+`http://localhost:8080/adonet/postgresql`
+`http://localhost:8080/adonet/postgresql?queries=10`
+
+### MongoDB
+
+`http://localhost:8080/mongodb`
+`http://localhost:8080/mongodb?queries=10`
+
+### Entity Framework
 
 _Currently not working._
 
-`http://localhost:8080/mysql-ef?queries=10`
+`http://localhost:8080/ef/mysql`
+`http://localhost:8080/ef/mysql?queries=10`
+
+`http://localhost:8080/ef/postgresql`
+`http://localhost:8080/ef/postgresql?queries=10`
 
-## Install Mono
+## Mono Installation
 
     sudo apt-get install build-essential autoconf libtool automake git
 

+ 16 - 2
aspnet-mono/benchmark_config

@@ -9,10 +9,24 @@
     },
     "mysql-raw": {
       "setup_file": "setup",
-      "db_url": "/mysql-raw",
-      "query_url": "/mysql-raw?queries=",
+      "db_url": "/adonet/mysql",
+      "query_url": "/adonet/mysql?queries=",
       "port": 8080,
       "sort": 91
+    },
+    "postgresql-raw": {
+      "setup_file": "setup",
+      "db_url": "/adonet/postgresql",
+      "query_url": "/adonet/postgresql?queries=",
+      "port": 8080,
+      "sort": 92
+    },
+    "mongodb-raw": {
+      "setup_file": "setup",
+      "db_url": "/mongodb",
+      "query_url": "/mongodb?queries=",
+      "port": 8080,
+      "sort": 93
     }
   }]
 }