Browse Source

Merge branch 'master' of github.com:TechEmpower/FrameworkBenchmarks

Mike Smith 11 years ago
parent
commit
b059083311
1 changed files with 3 additions and 5 deletions
  1. 3 5
      urweb/README.md

+ 3 - 5
urweb/README.md

@@ -3,12 +3,10 @@ TechEmpower Framework Benchmark: Ur/Web
 
 
 http://www.impredicative.com/ur/
 http://www.impredicative.com/ur/
 
 
-To compile a standalone executable running on port 8080, run `urweb bench`.
+To compile a standalone executable running on port 8080, run `urweb bench`.  See `setup.py` for fancier options.
 
 
-`bench.ur` is the main source file. `bench.urs` is the signature file which describes the module's exported functions. `bench.urp` is the project file which gives compilation directives.
-
-`fortune.sql` and `world.sql` are for the creation and population of the `uw_Bench_fortune` and `uw_Bench_world` tables. As part of its strong security guarantees, Ur/Web follows a certain naming convention for SQL tables which is incompatible with the default table names of `fortune` and `world`.
+`bench.ur` is the main source file.  `bench.urs` is the signature file describing the module's exported functions.  `bench.urp` is the project file giving compilation directives.
 
 
 `benchmark_config` and `source_code` include metadata for the framework comparison.
 `benchmark_config` and `source_code` include metadata for the framework comparison.
 
 
-`__init__.py` and `setup.py` are for starting and stopping the Ur/Web server.
+`__init__.py` and `setup.py` are for starting and stopping the Ur/Web server.  `setup_mysql.py` is a variant using MySQL instead of PostgreSQL.