package lwt

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

Install

dune-project
 Dependency

Authors

Maintainers

Sources

5.1.1.tar.gz
sha256=078a6c351d94d6eeb827c62a25c87ac11715c791f4b642d85303740c2cac8d3f
md5=4ddec0f42b7aa4a310175a14c47c60a3

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.

Added to opam-repository:

README

Lwt    version 5.1.1 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. bimage-lwt
  26. bistro
  27. bitflyer
  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. ezjsonm-lwt
  107. ezresto
  108. ezresto-directory >= "0.5"
  109. faraday-lwt
  110. faraday-lwt-unix
  111. fat-filesystem
  112. fiber-lwt
  113. fsevents-lwt
  114. fswatch_lwt
  115. fuseau-lwt
  116. gdbprofiler
  117. git
  118. git-paf
  119. git-unix >= "3.2.0" & < "3.15.0"
  120. github
  121. github-hooks
  122. github-unix >= "4.4.0"
  123. gitlab-unix
  124. gluten-lwt
  125. gluten-lwt-unix < "0.4.0"
  126. gluten-mirage < "0.4.0"
  127. gmocoin
  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. launchd
  178. learn-ocaml
  179. learn-ocaml-client
  180. letsencrypt < "2.0.0"
  181. letsencrypt-app
  182. letsencrypt-dns < "2.0.0"
  183. links
  184. linol-lwt
  185. lru_cache
  186. lwt-canceler
  187. lwt-dllist
  188. lwt-exit
  189. lwt-parallel
  190. lwt-pipe
  191. lwt-pipeline
  192. lwt-watcher
  193. lwt_camlp4
  194. lwt_domain < "0.3.0"
  195. lwt_eio < "0.4"
  196. lwt_glib
  197. lwt_log
  198. lwt_ppx < "5.8.0"
  199. lwt_react
  200. lwt_ssl
  201. mariadb >= "1.2.0"
  202. markdown_monolith
  203. markup = "0.7.6"
  204. markup-lwt
  205. mdx
  206. mechaml
  207. metrics-influx
  208. metrics-lwt
  209. metrics-unix
  210. mindstorm-lwt
  211. mirage < "4.0.0"
  212. mirage-block >= "2.0.1"
  213. mirage-block-ccm
  214. mirage-block-combinators
  215. mirage-block-lwt
  216. mirage-block-ramdisk
  217. mirage-block-solo5
  218. mirage-block-unikraft
  219. mirage-block-xen
  220. mirage-channel >= "4.0.1"
  221. mirage-channel-lwt
  222. mirage-clock-lwt
  223. mirage-clock-unix < "4.2.0"
  224. mirage-console-lwt
  225. mirage-crypto-rng < "0.11.3"
  226. mirage-crypto-rng-lwt
  227. mirage-crypto-rng-mirage
  228. mirage-device >= "2.0.0"
  229. mirage-flow >= "3.0.0"
  230. mirage-flow-combinators
  231. mirage-flow-lwt
  232. mirage-flow-unix
  233. mirage-fs >= "4.0.0"
  234. mirage-fs-lwt
  235. mirage-kv >= "3.0.1"
  236. mirage-kv-lwt
  237. mirage-kv-unix < "3.0.0"
  238. mirage-net >= "4.0.0"
  239. mirage-net-lwt
  240. mirage-net-macosx
  241. mirage-net-solo5
  242. mirage-net-unikraft
  243. mirage-net-unix
  244. mirage-net-xen
  245. mirage-profile
  246. mirage-protocols >= "7.0.0"
  247. mirage-protocols-lwt
  248. mirage-runtime
  249. mirage-sleep
  250. mirage-solo5
  251. mirage-stack = "3.0.0"
  252. mirage-stack-lwt
  253. mirage-time >= "3.0.0"
  254. mirage-time-lwt
  255. mirage-time-unix
  256. mirage-types-lwt
  257. mirage-unikraft
  258. mirage-unix
  259. mirage-vnetif
  260. mirage-xen
  261. monorobot
  262. moonpool-lwt
  263. mrmime >= "0.5.0"
  264. multipart-form-data
  265. multipart_form >= "0.2.0" & < "0.4.0"
  266. multipart_form-lwt < "0.6.0"
  267. mwt
  268. naboris
  269. nbd >= "4.0.3"
  270. nbd-tool
  271. nbd-unix
  272. nocrypto
  273. nottui-lwt
  274. notty-community
  275. nproc
  276. nsq
  277. obuilder < "0.4"
  278. obus >= "1.2.1"
  279. ocluster < "0.2"
  280. ocluster-api < "0.2"
  281. ocplib-resto
  282. ocsigen-start >= "4.1.0" & < "4.7.0"
  283. ocsigenserver < "7.0.0"
  284. ocsipersist
  285. ocsipersist-dbm
  286. ocsipersist-lib
  287. ocsipersist-pgsql
  288. ocsipersist-sqlite
  289. opam-check-npm-deps >= "4.1.0"
  290. opam-compiler < "0.2.0"
  291. opam-publish >= "3.0.0"
  292. opencage
  293. opium < "0.19.0"
  294. opium_kernel
  295. opomodoro
  296. order-i3-xfce
  297. ordma
  298. osc-lwt
  299. oskel >= "0.3.0"
  300. ounit-lwt < "2.2.0"
  301. ounit2-lwt
  302. owork
  303. paf
  304. paf-cohttp
  305. passage < "0.1.8"
  306. pcap-format < "0.5.2"
  307. pgx_lwt
  308. pgx_lwt_mirage
  309. pgx_lwt_unix < "2.0"
  310. plist-xml-lwt
  311. plotkicadsch
  312. posix-getopt >= "4.0.2"
  313. ppx_defer >= "0.4.0"
  314. ppx_deriving_rpc
  315. ppx_rapper_lwt
  316. prof_spacetime
  317. prometheus < "2.0"
  318. prometheus-app
  319. prometheus-lwt
  320. promise_jsoo_lwt
  321. protocol-9p
  322. protocol-9p-unix
  323. proton
  324. qcow < "0.12.1"
  325. qcow-tool
  326. qcow-types
  327. qfs
  328. quests
  329. quickterface
  330. rawlink < "2.1"
  331. rawlink-lwt
  332. redis-lwt
  333. resource-pooling
  334. resp
  335. resp-mirage >= "0.10.0"
  336. resp-unix >= "0.10.0"
  337. resto
  338. resto-cohttp-client >= "0.4"
  339. resto-cohttp-self-serving-client
  340. resto-cohttp-server >= "0.4"
  341. resto-directory >= "0.4"
  342. ringo-lwt
  343. river
  344. rpclib-js
  345. rpclib-lwt
  346. SZXX < "2.0.0"
  347. sanddb
  348. scgi
  349. sendmail-lwt
  350. sendmail-mirage
  351. serial
  352. session-cohttp-lwt
  353. session-cookie-lwt
  354. session-postgresql-lwt
  355. sessions
  356. shared-block-ring
  357. shared-memory-ring-lwt
  358. slack
  359. slacko
  360. slipshow < "0.12.0"
  361. smtml >= "0.7.0"
  362. speed
  363. spin < "0.6.0"
  364. stog < "0.19.0"
  365. syndic >= "1.4" & < "1.6.0"
  366. tar-unix < "3.3.0"
  367. tcpip
  368. telegraml
  369. timmy-lwt
  370. tls >= "0.10.6" & < "0.16.0"
  371. tls-lwt < "0.17.5"
  372. tls-mirage
  373. tube
  374. tuntap
  375. twirp_cohttp_lwt_unix
  376. uring
  377. uspf
  378. uspf-lwt
  379. uspf-mirage
  380. utop
  381. uwt
  382. vchan
  383. vchan-unix
  384. vchan-xen
  385. vercel
  386. vhd-format-lwt
  387. vmnet
  388. vue-jsoo < "0.3"
  389. webauthn
  390. xen-evtchn
  391. xen-evtchn-unix
  392. xen-gnt
  393. xen-gnt-unix
  394. xenstore
  395. xenstore-tool
  396. xenstore_transport
  397. xlsx2csv
  398. zarr-lwt
  399. zmq-lwt

Conflicts (1)

  1. ocaml-variants = "4.02.1+BER"