package lwt

  1. Overview
  2. Docs
Promises and event-driven I/O

Install

dune-project
 Dependency

Authors

Maintainers

Sources

5.2.0.tar.gz
sha256=97c12b3da3d0db019dbdb97950b72f6fd1226ded7519c36ebfe2787574a9b132
md5=d5783fcff4fbfa7f79c9303776e4d144

Description

A promise is a value that may become determined in the future.

Lwt provides typed, composable promises. Promises that are resolved by I/O are resolved by Lwt in parallel.

Meanwhile, OCaml code, including code creating and waiting on promises, runs in a single thread by default. This reduces the need for locks or other synchronization primitives. Code can be run in parallel on an opt-in basis.

Published: 09 Mar 2020

README

Lwt    version 5.2.0 Travis status AppVeyor status

Lwt is a concurrent programming library for OCaml. It provides a single data type: the promise, which is a value that will become determined in the future. Creating a promise spawns a computation. When that computation is I/O, Lwt runs it in parallel with your OCaml code.

OCaml code, including creating and waiting on promises, is run in a single thread by default, so you don't have to worry about locking or preemption. You can detach code to be run in separate threads on an opt-in basis.

Here is a simplistic Lwt program which requests the Google front page, and fails if the request is not completed in five seconds:

let () =
  let request =
    let%lwt addresses = Lwt_unix.getaddrinfo "google.com" "80" [] in
    let google = Lwt_unix.((List.hd addresses).ai_addr) in

    Lwt_io.(with_connection google (fun (incoming, outgoing) ->
      let%lwt () = write outgoing "GET / HTTP/1.1\r\n" in
      let%lwt () = write outgoing "Connection: close\r\n\r\n" in
      let%lwt response = read incoming in
      Lwt.return (Some response)))
  in

  let timeout =
    let%lwt () = Lwt_unix.sleep 5. in
    Lwt.return None
  in

  match Lwt_main.run (Lwt.pick [request; timeout]) with
  | Some response -> print_string response
  | None -> prerr_endline "Request timed out"; exit 1

(* ocamlfind opt -package lwt.unix,lwt_ppx -linkpkg -o request example.ml
   ./request *)

In the program, functions such as Lwt_io.write create promises. The let%lwt ... in construct is used to wait for a promise to become determined; the code after in is scheduled to run in a "callback." Lwt.pick races promises against each other, and behaves as the first one to complete. Lwt_main.run forces the whole promise-computation network to be executed. All the visible OCaml code is run in a single thread, but Lwt internally uses a combination of worker threads and non-blocking file descriptors to resolve in parallel the promises that do I/O.


Overview

Lwt compiles to native code on Linux, macOS, Windows, and other systems. It's also routinely compiled to JavaScript for the front end and Node, by js_of_ocaml and BuckleScript.

In Lwt,

  • The core library Lwt provides promises...
  • ...and a few pure-OCaml helpers, such as promise-friendly mutexes, condition variables, and mvars.
  • There is a big Unix binding, Lwt_unix that binds almost every Unix system call. A higher-level module Lwt_io provides nice I/O channels.
  • Lwt_process is for subprocess handling.
  • Lwt_preemptive spawns system threads.
  • The PPX syntax allows using all of the above without going crazy!
  • There are also some other helpers, such as Lwt_react for reactive programming. See the table of contents on the linked manual pages!

Installing

  1. Use your system package manager to install a development libev package. It is often called libev-dev or libev-devel.
  2. opam install conf-libev lwt

Documentation

We are currently working on improving the Lwt documentation (drastically; we are rewriting the manual). In the meantime:

  • The current manual can be found here.
  • Mirage has a nicely-written Lwt tutorial.
  • An example of a simple server written in Lwt.
  • Concurrent Programming with Lwt is a nice source of Lwt examples. They are translations of code from the excellent Real World OCaml, but are just as useful if you are not reading the book.

Note: much of the current manual refers to 'a Lwt.t as "lightweight threads" or just "threads." This will be fixed in the new manual. 'a Lwt.t is a promise, and has nothing to do with system or preemptive threads.


Contact

Open an issue, visit Discord chat, ask on discuss.ocaml.org, or on Stack Overflow.

Release announcements are made in /r/ocaml, and on discuss.ocaml.org. Watching the repo for "Releases only" is also an option.


Contributing

  • CONTRIBUTING.md contains tips for working on the code, such as how to check the code out, how review works, etc. There is also a high-level outline of the code base.
  • Ask us anything, whether it's about working on Lwt, or any question at all about it :)
  • The documentation always needs proofreading and fixes.
  • You are welcome to pick up any other issue, review a PR, add your opinion, etc.
  • Any feedback is welcome, including how to make contributing easier!

Libraries to use with Lwt

Dependencies (8)

  1. seq
  2. result
  3. ocplib-endian
  4. ocaml >= "4.02.0" & < "4.12"
  5. mmap >= "1.1.0"
  6. dune-configurator
  7. dune >= "1.7.0"
  8. cppo build & >= "1.1.0"

Dev Dependencies (2)

  1. ocamlfind with-dev-setup & >= "1.7.3-1"
  2. bisect_ppx with-dev-setup & >= "1.3.0"

  1. 0install >= "2.15.1"
  2. albatross
  3. alcotest-lwt
  4. alcotest-mirage
  5. ambient-context-lwt
  6. amqp-client >= "1.1.0"
  7. amqp-client-lwt
  8. angstrom-lwt-unix
  9. anthill
  10. anycache-lwt
  11. archi-lwt
  12. arp
  13. awa-mirage < "0.2.0"
  14. aws-lwt
  15. aws-s3-lwt
  16. awskit-lwt
  17. awskit-lwt-unix
  18. awskit-s3-lwt
  19. awskit-s3-lwt-unix
  20. awsm-lwt
  21. awso-lwt
  22. azure-cosmos-db < "0.4.0"
  23. azure-cosmos-db-lwt
  24. balancer
  25. bastet_lwt
  26. bimage-lwt
  27. bistro
  28. bizowie-api
  29. brisk-reconciler
  30. builder
  31. bun >= "0.3.3"
  32. cachet-lwt
  33. calculon
  34. caldav
  35. camltc
  36. canary
  37. capnp-rpc-lwt < "1.2.3"
  38. capnp-rpc-unix < "1.2.3"
  39. caqti-lwt < "2.0.1"
  40. carton-git < "0.7.2"
  41. carton-lwt < "1.0.0"
  42. catala-format >= "0.2.0"
  43. cf-lwt
  44. charrua-client
  45. charrua-unix
  46. ciao_lwt
  47. cmdtui-lambda-term
  48. cohttp-lwt < "6.0.0~beta2"
  49. cohttp-lwt-jsoo != "6.1.0" & < "6.2.1"
  50. cohttp-lwt-unix
  51. cohttp-mirage
  52. comby
  53. comby-semantic
  54. conan-lwt
  55. conduit-lwt < "7.0.0"
  56. conduit-lwt-unix < "7.0.0"
  57. cowabloga
  58. crunch
  59. cstruct-lwt
  60. csv-lwt
  61. ctypes >= "0.15.0" & < "0.21.1"
  62. ctypes-foreign >= "0.21.1"
  63. curl_lwt
  64. current < "0.7.1"
  65. current_docker < "0.7.1"
  66. current_examples < "0.7.1"
  67. current_git < "0.7.1"
  68. current_github < "0.7.1"
  69. current_gitlab < "0.7.1"
  70. current_ocluster < "0.2"
  71. current_slack < "0.7.1"
  72. current_web < "0.7.1"
  73. dap
  74. data-encoding < "0.1.1"
  75. datakit-server
  76. devkit >= "1.2"
  77. distributed-lwt
  78. dkim-lwt-unix
  79. dkim-mirage
  80. dlm
  81. dns-certify
  82. dns-cli
  83. dns-client < "7.0.3"
  84. dns-client-lwt
  85. dns-client-mirage
  86. dns-forward
  87. dns-forward-lwt-unix
  88. dns-lwt
  89. dns-mirage
  90. dns-resolver
  91. dns-server
  92. dns-stub
  93. dnsrobot
  94. dnssd
  95. docker_hub
  96. dream
  97. dream-httpaf
  98. dream-pure
  99. dropbox
  100. dune >= "3.17.2"
  101. elasticsearch-cli
  102. emoji = "2.0.0"
  103. ethernet
  104. ez_api < "3.0.0"
  105. ezcurl-lwt
  106. ezjs_min < "0.2"
  107. ezjsonm-lwt
  108. ezresto
  109. ezresto-directory >= "0.5"
  110. faraday-lwt
  111. faraday-lwt-unix
  112. fat-filesystem
  113. fiber-lwt
  114. fsevents-lwt
  115. fswatch_lwt
  116. fuseau-lwt
  117. gdbprofiler
  118. git
  119. git-paf
  120. git-unix >= "3.2.0" & < "3.15.0"
  121. github
  122. github-hooks
  123. github-unix >= "4.4.0"
  124. gitlab-unix
  125. gluten-lwt
  126. gluten-lwt-unix < "0.4.0"
  127. gluten-mirage < "0.4.0"
  128. graphql-lwt
  129. gremlin
  130. gufo
  131. h1
  132. h1-lwt-unix
  133. h2-lwt
  134. h2-lwt-unix < "0.10.0"
  135. h2-mirage
  136. happy-eyeballs-lwt
  137. happy-eyeballs-mirage
  138. hiredis >= "0.6"
  139. hl_yaml
  140. http-lwt-client
  141. http-multipart-formdata >= "2.0.0" & < "3.0.0"
  142. httpaf-lwt-unix
  143. httpun-lwt
  144. httpun-mirage
  145. httpun-ws-lwt
  146. hvsock
  147. i3ipc
  148. influxdb-lwt
  149. inotify >= "2.4"
  150. inquire < "0.3.0"
  151. interface-prime-lwt
  152. ip2location
  153. ip2locationio
  154. ip2whois
  155. ipv6-multicast-lwt
  156. irc-client-lwt
  157. irc-client-lwt-ssl
  158. irc-client-tls
  159. irmin < "2.7.1"
  160. irmin-indexeddb
  161. irmin-watcher
  162. joolog
  163. jose < "0.9.0"
  164. js_of_ocaml-lwt
  165. jsoo_broadcastchannel
  166. jsoo_storage
  167. jupyter
  168. jupyter-kernel
  169. kafka < "0.5"
  170. kafka_lwt
  171. kappa-library
  172. ke >= "0.5"
  173. kinetic-client
  174. kubecaml
  175. lambda-runtime
  176. lambda-term
  177. lambda_streams_lwt
  178. launchd
  179. learn-ocaml
  180. learn-ocaml-client
  181. letsencrypt < "2.0.0"
  182. letsencrypt-app
  183. letsencrypt-dns < "2.0.0"
  184. letters
  185. links
  186. linol-lwt
  187. lru_cache
  188. lwt-canceler
  189. lwt-dllist
  190. lwt-exit
  191. lwt-parallel
  192. lwt-pipe
  193. lwt-pipeline
  194. lwt-watcher
  195. lwt_camlp4
  196. lwt_domain < "0.3.0"
  197. lwt_eio < "0.4"
  198. lwt_glib
  199. lwt_log
  200. lwt_ppx < "5.8.0"
  201. lwt_react
  202. lwt_ssl
  203. mariadb >= "1.2.0"
  204. markdown_monolith
  205. markup = "0.7.6"
  206. markup-lwt
  207. mdx
  208. mechaml
  209. metrics-influx
  210. metrics-lwt
  211. metrics-unix
  212. mindstorm-lwt
  213. mirage < "4.0.0"
  214. mirage-block >= "2.0.1"
  215. mirage-block-ccm
  216. mirage-block-combinators
  217. mirage-block-lwt
  218. mirage-block-ramdisk
  219. mirage-block-solo5
  220. mirage-block-unikraft
  221. mirage-block-xen
  222. mirage-channel >= "4.0.1"
  223. mirage-channel-lwt
  224. mirage-clock-lwt
  225. mirage-clock-unix < "4.2.0"
  226. mirage-console-lwt
  227. mirage-crypto-rng < "0.11.3"
  228. mirage-crypto-rng-lwt
  229. mirage-crypto-rng-mirage
  230. mirage-device >= "2.0.0"
  231. mirage-flow >= "3.0.0"
  232. mirage-flow-combinators
  233. mirage-flow-lwt
  234. mirage-flow-unix
  235. mirage-fs >= "4.0.0"
  236. mirage-fs-lwt
  237. mirage-kv >= "3.0.1"
  238. mirage-kv-lwt
  239. mirage-kv-unix < "3.0.0"
  240. mirage-net >= "4.0.0"
  241. mirage-net-lwt
  242. mirage-net-macosx
  243. mirage-net-solo5
  244. mirage-net-unikraft
  245. mirage-net-unix
  246. mirage-net-xen
  247. mirage-profile
  248. mirage-protocols >= "7.0.0"
  249. mirage-protocols-lwt
  250. mirage-runtime
  251. mirage-sleep
  252. mirage-solo5
  253. mirage-stack = "3.0.0"
  254. mirage-stack-lwt
  255. mirage-time >= "3.0.0"
  256. mirage-time-lwt
  257. mirage-time-unix
  258. mirage-types-lwt
  259. mirage-unikraft
  260. mirage-unix
  261. mirage-vnetif
  262. mirage-xen
  263. monorobot
  264. moonpool-lwt
  265. mrmime >= "0.5.0"
  266. multipart-form-data
  267. multipart_form >= "0.2.0" & < "0.4.0"
  268. multipart_form-lwt < "0.6.0"
  269. mwt
  270. naboris
  271. nbd >= "4.0.3"
  272. nbd-tool
  273. nbd-unix
  274. nocrypto
  275. nottui-lwt
  276. notty-community
  277. nproc
  278. nsq
  279. obuilder < "0.4"
  280. obus >= "1.2.1"
  281. ocluster < "0.2"
  282. ocluster-api < "0.2"
  283. ocplib-resto
  284. ocsigen-start >= "4.1.0" & < "4.7.0"
  285. ocsigenserver < "7.0.0"
  286. ocsipersist
  287. ocsipersist-dbm
  288. ocsipersist-lib
  289. ocsipersist-pgsql
  290. ocsipersist-sqlite
  291. opam-check-npm-deps >= "4.1.0"
  292. opam-compiler < "0.2.0"
  293. opam-publish >= "3.0.0"
  294. opencage
  295. opium < "0.19.0"
  296. opium_kernel
  297. opomodoro
  298. order-i3-xfce
  299. ordma
  300. osc-lwt
  301. oskel >= "0.3.0"
  302. ounit-lwt < "2.2.0"
  303. ounit2-lwt
  304. owork
  305. paf
  306. paf-cohttp
  307. passage < "0.1.8"
  308. pcap-format < "0.5.2"
  309. pgx_lwt
  310. pgx_lwt_mirage
  311. pgx_lwt_unix < "2.0"
  312. plist-xml-lwt
  313. plotkicadsch
  314. posix-getopt >= "4.0.2"
  315. ppx_defer >= "0.4.0"
  316. ppx_deriving_rpc
  317. ppx_rapper_lwt
  318. prof_spacetime
  319. prometheus
  320. prometheus-app
  321. promise_jsoo_lwt
  322. protocol-9p
  323. protocol-9p-unix
  324. proton
  325. qcow < "0.12.1"
  326. qcow-tool
  327. qcow-types
  328. qfs
  329. quests
  330. quickterface
  331. rawlink < "2.1"
  332. rawlink-lwt
  333. redis-lwt
  334. resource-pooling
  335. resp
  336. resp-mirage >= "0.10.0"
  337. resp-unix >= "0.10.0"
  338. resto
  339. resto-cohttp-client >= "0.4"
  340. resto-cohttp-self-serving-client
  341. resto-cohttp-server >= "0.4"
  342. resto-directory >= "0.4"
  343. ringo-lwt
  344. river
  345. rpclib-js
  346. rpclib-lwt
  347. SZXX < "2.0.0"
  348. sanddb
  349. scgi
  350. sendmail-lwt
  351. sendmail-mirage
  352. serial
  353. session-cohttp-lwt
  354. session-cookie-lwt
  355. session-postgresql-lwt
  356. sessions
  357. shared-block-ring
  358. shared-memory-ring-lwt
  359. slack
  360. slacko
  361. slipshow
  362. smtml >= "0.7.0"
  363. speed
  364. spin < "0.6.0"
  365. stog < "0.19.0"
  366. syndic >= "1.4" & < "1.6.0"
  367. tar-unix < "3.3.0"
  368. tcpip
  369. telegraml
  370. timmy-lwt
  371. tls >= "0.10.6" & < "0.16.0"
  372. tls-lwt < "0.17.5"
  373. tls-mirage
  374. tube
  375. tuntap
  376. twirp_cohttp_lwt_unix
  377. uring
  378. uspf
  379. uspf-lwt
  380. uspf-mirage
  381. utop
  382. uwt
  383. vchan
  384. vchan-unix
  385. vchan-xen
  386. vercel
  387. vhd-format-lwt
  388. vmnet
  389. vue-jsoo < "0.3"
  390. webauthn
  391. xen-evtchn
  392. xen-evtchn-unix
  393. xen-gnt
  394. xen-gnt-unix
  395. xenstore
  396. xenstore-tool
  397. xenstore_transport
  398. xlsx2csv
  399. zarr-lwt
  400. zmq-lwt

Conflicts (1)

  1. ocaml-variants = "4.02.1+BER"