]> gitweb.factorcode.org Git - factor.git/blob - basis/furnace/db/db-docs.factor
Conflict resolution
[factor.git] / basis / furnace / db / db-docs.factor
1 USING: help.markup help.syntax db http.server ;
2 IN: furnace.db
3
4 HELP: <db-persistence>
5 { $values
6      { "responder" "a responder" } { "db" "a database descriptor" }
7      { "responder'" db-persistence }
8 }
9 { $description "Wraps a responder with database persistence support. The responder's " { $link call-responder* } " method will run in a " { $link with-db } " scope." } ;
10
11 ARTICLE: "furnace.db" "Furnace database support"
12 "The " { $vocab-link "furnace.db" } " vocabulary implements a responder which maintains a database connection pool and runs each request in a " { $link with-db } " scope."
13 { $subsection <db-persistence> }
14 "The " { $vocab-link "furnace.alloy" } " vocabulary combines database persistence with several other features." ;
15
16 ABOUT: "furnace.db"