File tree Expand file tree Collapse file tree 3 files changed +37
-0
lines changed
packages/resource-pooling/resource-pooling.0.1 Expand file tree Collapse file tree 3 files changed +37
-0
lines changed Original file line number Diff line number Diff line change
1
+ library for pooling resources like connections, threads, or similar
2
+
3
+ This package is derived from the module Lwt_pool from the lwt package,
4
+ which implements resource pooling. With Resource_pool this package
5
+ provides a modified version with additional features. Also there is a
6
+ module called Server_pool that manages resource clusters, specifically
7
+ a cluster of servers each with its own connection pool.
Original file line number Diff line number Diff line change
1
+ opam-version: "1.2"
2
+ maintainer: "Jan Rochel <
[email protected] >"
3
+ authors: "Jan Rochel (BeSport)"
4
+ homepage: "https://github.com/ocsigen/resource-pooling"
5
+ bug-reports: "https://github.com/ocsigen/resource-pooling/issues"
6
+ license: "MIT"
7
+ dev-repo: "https://github.com/ocsigen/resource-pooling.git"
8
+ build: [
9
+ ["oasis" "setup"]
10
+ ["ocaml" "setup.ml" "-configure" "--prefix" prefix]
11
+ ["ocaml" "setup.ml" "-build"]
12
+ ]
13
+ install: ["ocaml" "setup.ml" "-install"]
14
+ build-test: [
15
+ ["oasis" "setup"]
16
+ ["ocaml" "setup.ml" "-configure" "--enable-tests"]
17
+ ["ocaml" "setup.ml" "-build"]
18
+ ["ocaml" "setup.ml" "-test"]
19
+ ]
20
+ remove: ["ocamlfind" "remove" "resource-pooling"]
21
+ depends: [
22
+ "batteries"
23
+ ("lwt" {>= "2.4.7" & < "4.0.0"})
24
+ ("oasis" {build & >= "0.4.7"} | "oasis-mirage" {build & >= "0.4.7"})
25
+ "ocamlbuild" {build}
26
+ "ocamlfind" {build}
27
+ ]
28
+ available: [ocaml-version >= "4.02"]
Original file line number Diff line number Diff line change
1
+ http: "https://github.com/ocsigen/resource-pooling/archive/0.1.tar.gz"
2
+ checksum: "54b2a358d85e7cf528194a886509baa5"
You can’t perform that action at this time.
0 commit comments