Browse Source

Removed direct connection test. Tested postgresql test. (#3667)

Elgar 7 years ago
parent
commit
21d964fb84

+ 1 - 2
frameworks/C++/cppcms/README.md

@@ -14,9 +14,8 @@ It is available under open source LGPLv3 license and alternative Commercial Lice
 
 
 ## Problems/DOTO
-- Test PostgreSQL
 - Test 7 CachedWorld uses normal worlds table
-- Fix direct conection WARNING: Required response size header missing, please include either "Content-Length" or "Transfer-Encoding"
+
 
 
 

+ 0 - 23
frameworks/C++/cppcms/benchmark_config.json

@@ -46,29 +46,6 @@
       "database_os": "Linux",
       "display_name": "CppCMS-PostgreSQL-nginx",
       "notes": ""
-    },
-    "direct": {
-      "json_url": "/json",
-      "db_url": "/db",
-      "query_url": "/queries/",
-      "update_url": "/updates/",
-      "fortune_url": "/fortunes",
-      "plaintext_url": "/plaintext",
-      "cached_query_url": "/cached-worlds/",
-      "port": 8080,
-      "approach": "Realistic",
-      "classification": "Platform",
-      "database": "MySQL",
-      "framework": "None",
-      "language": "C++",
-      "flavor": "None",
-      "orm": "Raw",
-      "platform": "None",
-      "webserver": "None",
-      "os": "Linux",
-      "database_os": "Linux",
-      "display_name": "CppCMS-MySQL-NoFront",
-      "notes": "HTTP 1.0 and no Content-length header"
     }
   }]
 }

+ 1 - 1
frameworks/C++/cppcms/nginx.conf

@@ -43,7 +43,7 @@ http {
 
         location / {
             fastcgi_pass unix:/var/tmp/cppcms.sock;
-            
+            fastcgi_keep_conn on;
             fastcgi_split_path_info ^()((?:/.*))?$;  
             fastcgi_param  PATH_INFO       $fastcgi_path_info;
         }