Browse Source

added JSON::XS as a dependency in README

Tudor Constantin 11 years ago
parent
commit
ff731414bc
1 changed files with 4 additions and 3 deletions
  1. 4 3
      mojolicious/README.md

+ 4 - 3
mojolicious/README.md

@@ -7,7 +7,8 @@
 # Requirements
 # Requirements
 
 
 * Mojolicious
 * Mojolicious
-* Mojolicious::Plugin::Database
+* JSON::XS
+* DBI
 * DBD::mysql
 * DBD::mysql
 * Starman (if using Starman as web server)
 * Starman (if using Starman as web server)
 * Plack (for plackup)
 * Plack (for plackup)
@@ -23,10 +24,10 @@ Set production mode:
 
 
 Something along the lines of
 Something along the lines of
 
 
-    plackup -s Starman --workers=2 -l /tmp/frameworks-benchmark.sock -a ./app.pl
+    plackup -s Starman --workers=8 -l /tmp/frameworks-benchmark.sock -a ./app.pl
 
 
 if you want to front it with nginx, otherwise
 if you want to front it with nginx, otherwise
 
 
-    plackup -s Starman --port 8080 --workers=2 -a ./app.pl
+    plackup -s Starman --port 8080 --workers=8 -a ./app.pl
 
 
 or the equivalent Morbo or Hypnotoad commands.
 or the equivalent Morbo or Hypnotoad commands.