Browse Source

more docs

Firrincieli Marco (UniCredit) 10 years ago
parent
commit
52ad88c195
2 changed files with 25 additions and 1 deletions
  1. 24 0
      frameworks/Scala/http4s/README
  2. 1 1
      frameworks/Scala/http4s/install.sh

+ 24 - 0
frameworks/Scala/http4s/README

@@ -1,2 +1,26 @@
 sbt package
 sbt package
 java -jar target/scala-2.11/http4s_2.11-1.0-SNAPSHOT-one-jar.jar
 java -jar target/scala-2.11/http4s_2.11-1.0-SNAPSHOT-one-jar.jar
+
+#Lift Benchmarking Test (stateless)
+
+This is the stateless Lift portion of a [benchmarking test suite](../) comparing a variety of web development platforms.
+
+### JSON Encoding Test
+
+* [JSON test source](src/main/scala/code/lib/StatelessJson.scala)
+
+### Data-Store/Database Mapping Test
+
+* [Database test snippet](src/main/scala/code/lib/StatelessDb.scala)
+* [Database test model](src/main/scala/code/model/World.scala)
+
+## Infrastructure Software Versions
+The tests were run with:
+
+* [Java Oracle 1.8.0_25](http://www.oracle.com/technetwork/java/javase)
+* [http4s 0.6.2](http://http4s.org/)
+
+## Test URLs
+### JSON Encoding Test
+
+http://localhost:8080/json

+ 1 - 1
frameworks/Scala/http4s/install.sh

@@ -1,3 +1,3 @@
 #!/bin/bash
 #!/bin/bash
 
 
-fw_depends java7 sbt
+fw_depends java8 sbt