package lwt

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

Install

Dune Dependency

Authors

Maintainers

Sources

5.0.1.tar.gz
sha256=b54c78ef2b7a47c94d6ef8c93333b474b2f8ad912f9208cc94dbca44612e9fc9
md5=70d107a5ff1247840e8012b6a3793c15

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: 22 Dec 2019

README

Lwt   

Lwt is OCaml's concurrent programming library. 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 dev & >= "1.7.3-1"
  2. bisect_ppx dev & >= "1.3.0"

  1. 0install >= "2.15.1"
  2. albatross
  3. alcotest-lwt
  4. alcotest-mirage
  5. ambient-context-lwt
  6. amqp-client >= "0.9.0" & < "1.0.2" | >= "1.1.0"
  7. amqp-client-lwt >= "2.0.1"
  8. angstrom-lwt-unix
  9. anthill
  10. anycache-lwt
  11. arakoon < "1.8.6" | >= "1.8.8"
  12. archi-lwt
  13. arp >= "2.3.1"
  14. arp-mirage >= "2.2.1"
  15. awa-lwt
  16. awa-mirage < "0.2.0"
  17. aws-lwt
  18. aws-s3-lwt
  19. awsm-lwt
  20. azure-cosmos-db
  21. baardskeerder
  22. balancer
  23. bap < "1.0.0"
  24. bap-server < "0.2.0"
  25. bimage-lwt
  26. biocaml = "0.4.0"
  27. bistro >= "0.4.0"
  28. brozip
  29. builder
  30. bun >= "0.3.3"
  31. c3
  32. calculon
  33. caldav
  34. camltc = "0.9.5" | >= "0.9.7.0"
  35. canary
  36. capnp-rpc-lwt < "1.2.3"
  37. capnp-rpc-unix >= "0.9.0" & < "1.2.3"
  38. caqti-lwt >= "0.11.0" & < "2.0.1"
  39. carton-git < "0.7.2"
  40. carton-lwt
  41. cf-lwt
  42. channel
  43. charrua-client >= "1.3.0"
  44. charrua-client-lwt
  45. charrua-client-mirage
  46. charrua-core < "0.3"
  47. charrua-unix >= "0.3" & != "0.10"
  48. cmdtui-lambda-term
  49. coclobas
  50. cohttp-lwt < "6.0.0~alpha2"
  51. cohttp-lwt-jsoo
  52. cohttp-lwt-unix >= "1.1.1"
  53. cohttp-lwt-unix-nossl
  54. cohttp-lwt-unix-ssl
  55. cohttp-mirage
  56. comby
  57. comby-semantic
  58. conan-lwt
  59. conduit-lwt < "7.0.0"
  60. conduit-lwt-unix < "7.0.0"
  61. cowabloga >= "0.2.2"
  62. crunch >= "2.0.0"
  63. cstruct-lwt
  64. csv-lwt
  65. csvprovider
  66. ctypes >= "0.15.0" & < "0.21.1"
  67. ctypes-foreign >= "0.21.1"
  68. current < "0.6.4"
  69. current_docker < "0.6.4"
  70. current_examples < "0.6.4"
  71. current_git < "0.6.4"
  72. current_github < "0.6.4"
  73. current_gitlab < "0.6.4"
  74. current_ocluster < "0.2"
  75. current_slack < "0.6.4"
  76. current_web < "0.6.4"
  77. DkSDKFFIOCaml_Std
  78. dap
  79. data-encoding < "0.1.1"
  80. datakit
  81. datakit-bridge-github
  82. datakit-bridge-local-git
  83. datakit-ci
  84. datakit-client >= "0.11.0"
  85. datakit-github
  86. datakit-server
  87. devkit >= "1.2"
  88. dht < "0.2.0"
  89. distributed-lwt
  90. dkim-mirage
  91. dlm
  92. dns >= "0.19.1" & < "0.20.1"
  93. dns-certify
  94. dns-cli >= "4.6.3"
  95. dns-client < "7.0.0"
  96. dns-client-lwt
  97. dns-client-mirage
  98. dns-forward >= "0.9.0"
  99. dns-forward-lwt-unix
  100. dns-lwt
  101. dns-mirage
  102. dns-resolver
  103. dns-server
  104. dns-stub
  105. dnssd
  106. docker_hub
  107. dream
  108. dream-httpaf
  109. dream-pure
  110. dropbox
  111. dune_watch
  112. earlybird < "1.0.0"
  113. elasticsearch-cli >= "0.4"
  114. eris-lwt
  115. ethernet
  116. ez_api
  117. ezcurl-lwt
  118. ezirmin
  119. ezjsonm >= "0.4.2" & < "0.5.0"
  120. ezjsonm-lwt
  121. ezresto
  122. ezresto-directory >= "0.5"
  123. faraday-lwt
  124. faraday-lwt-unix >= "0.6.0"
  125. fat-filesystem >= "0.12.0"
  126. fiber-lwt
  127. flowtype >= "0.72.0"
  128. frenetic < "2.0.0"
  129. fsevents-lwt
  130. fswatch_lwt
  131. fuseau-lwt
  132. gamepad
  133. gdb
  134. gdbprofiler >= "0.3"
  135. git != "1.4.3" & != "1.7.2"
  136. git-paf
  137. git-unix = "1.11.1" | >= "3.0.0" & < "3.10.0"
  138. github
  139. github-hooks < "0.2.0" | >= "0.4.0"
  140. github-unix >= "4.4.0"
  141. gitlab-unix
  142. gluten-lwt < "0.4.0"
  143. gluten-lwt-unix < "0.4.0"
  144. gluten-mirage < "0.4.0"
  145. graphql-lwt
  146. gremlin
  147. gufo
  148. h1
  149. h1-lwt-unix
  150. h2-lwt < "0.10.0"
  151. h2-lwt-unix < "0.10.0"
  152. h2-mirage
  153. happy-eyeballs-lwt
  154. happy-eyeballs-mirage
  155. hardcaml < "1.1.0"
  156. hardcaml-examples >= "0.3.0"
  157. hardcaml-framework
  158. hiredis != "0.4"
  159. hl_yaml
  160. horned_worm < "0.3.1"
  161. http-lwt-client
  162. http-multipart-formdata >= "2.0.0" & < "3.0.0"
  163. http2https
  164. httpaf-lwt-unix
  165. httpun-lwt
  166. httpun-mirage
  167. httpun-ws-lwt
  168. hvsock >= "1.0.2"
  169. i3ipc >= "0.1.4"
  170. imaplet-lwt
  171. influxdb-lwt
  172. inotify >= "2.4"
  173. inquire < "0.3.0"
  174. interface-prime-lwt
  175. iocaml < "0.4.6"
  176. iocaml-kernel >= "0.4.3" & < "0.4.6"
  177. iocamljs-kernel
  178. ip2location
  179. ip2locationio
  180. ip2whois
  181. ipv6-multicast-lwt
  182. irc-client-lwt
  183. irc-client-lwt-ssl
  184. irc-client-tls
  185. irmin < "0.9.6" | = "0.9.10" | >= "0.11.0" & < "2.7.0"
  186. irmin-bench < "2.7.0"
  187. irmin-chunk < "2.7.0"
  188. irmin-containers < "2.7.0"
  189. irmin-fs >= "2.3.0" & < "2.7.0"
  190. irmin-git >= "2.3.0" & < "2.7.0"
  191. irmin-graphql >= "2.3.0" & < "2.7.0"
  192. irmin-http >= "2.3.0" & < "2.7.0"
  193. irmin-indexeddb
  194. irmin-layers < "2.7.0"
  195. irmin-mem >= "2.3.0"
  196. irmin-mirage-git >= "2.3.0" & < "2.7.0"
  197. irmin-mirage-graphql >= "2.3.0" & < "2.7.0"
  198. irmin-pack < "2.7.0"
  199. irmin-test >= "2.3.0" & < "2.7.0"
  200. irmin-unix >= "2.3.0" & < "2.7.0"
  201. irmin-watcher >= "0.3.0"
  202. jerboa
  203. jitsu
  204. joolog
  205. jose < "0.9.0"
  206. js_of_ocaml < "2.5"
  207. js_of_ocaml-lwt >= "3.5.0"
  208. jsoo_broadcastchannel
  209. jsoo_router
  210. jsoo_storage
  211. jupyter >= "2.3.0"
  212. jupyter-kernel >= "0.4"
  213. kafka >= "0.3" & < "0.5"
  214. kafka_lwt
  215. kappa-library
  216. ke >= "0.5"
  217. ketrew >= "3.2.0"
  218. kinetic-client < "0.0.3" | >= "0.0.9"
  219. kubecaml
  220. lablqml < "0.6"
  221. lambda-runtime
  222. lambda-term >= "1.13"
  223. launchd
  224. learn-ocaml >= "0.13.0"
  225. learn-ocaml-client >= "0.13.0"
  226. letsencrypt
  227. letsencrypt-app
  228. letsencrypt-dns
  229. libres3
  230. links != "0.9"
  231. lru_cache < "v0.16.0"
  232. lwt-binio < "0.2.0"
  233. lwt-canceler
  234. lwt-dllist
  235. lwt-exit
  236. lwt-parallel >= "1.0.0"
  237. lwt-pipe
  238. lwt-pipeline
  239. lwt-watcher
  240. lwt-zmq < "1.0.0"
  241. lwt_camlp4
  242. lwt_domain < "0.3.0"
  243. lwt_eio < "0.4"
  244. lwt_glib >= "1.0.1"
  245. lwt_log >= "1.1.0"
  246. lwt_ppx
  247. lwt_ppx_let
  248. lwt_react >= "1.0.1"
  249. lwt_ssl >= "1.0.1"
  250. mariadb < "0.5.1"
  251. markup = "0.7.6"
  252. markup-lwt
  253. mdx
  254. mechaml
  255. metrics-influx
  256. metrics-lwt
  257. metrics-mirage
  258. metrics-unix
  259. mindstorm-lwt
  260. mirage >= "0.4.1" & != "0.6.1" & < "0.8.0" | >= "0.10.0" & < "2.7.0"
  261. mirage-block < "1.0.0" | >= "2.0.0"
  262. mirage-block-ccm
  263. mirage-block-combinators
  264. mirage-block-lwt
  265. mirage-block-ramdisk
  266. mirage-block-solo5
  267. mirage-block-unix < "2.3.0" | = "2.8.2"
  268. mirage-block-xen
  269. mirage-bootvar-solo5 >= "0.2.0"
  270. mirage-bootvar-unix
  271. mirage-bootvar-xen >= "0.4.0"
  272. mirage-channel >= "4.0.0"
  273. mirage-channel-lwt
  274. mirage-clock-freestanding < "3.0.0"
  275. mirage-clock-lwt
  276. mirage-clock-unix >= "1.3.0" & < "3.0.0"
  277. mirage-console >= "3.0.0"
  278. mirage-console-lwt
  279. mirage-console-solo5 >= "0.2.0"
  280. mirage-console-unix >= "2.2.1"
  281. mirage-console-xen >= "5.0.0"
  282. mirage-console-xen-backend
  283. mirage-console-xen-cli
  284. mirage-crypto-entropy
  285. mirage-crypto-rng >= "0.7.0" & < "0.11.0"
  286. mirage-crypto-rng-lwt
  287. mirage-crypto-rng-mirage >= "0.8.8"
  288. mirage-device >= "2.0.0"
  289. mirage-dns < "3.0.0"
  290. mirage-entropy
  291. mirage-flow >= "1.0.3" & < "1.2.0" | >= "2.0.0"
  292. mirage-flow-combinators
  293. mirage-flow-lwt
  294. mirage-flow-rawlink
  295. mirage-flow-unix >= "1.3.0"
  296. mirage-fs >= "3.0.0"
  297. mirage-fs-lwt
  298. mirage-fs-unix < "1.1.1" | >= "1.3.0"
  299. mirage-http
  300. mirage-http-unix
  301. mirage-http-xen
  302. mirage-kv >= "3.0.0"
  303. mirage-kv-lwt
  304. mirage-kv-unix < "3.0.0"
  305. mirage-logs != "0.3.0"
  306. mirage-nat < "3.0.0"
  307. mirage-net >= "3.0.1"
  308. mirage-net-fd
  309. mirage-net-lwt
  310. mirage-net-macosx
  311. mirage-net-solo5
  312. mirage-net-unix >= "2.2.0"
  313. mirage-net-xen
  314. mirage-os-shim >= "3.0.0"
  315. mirage-profile
  316. mirage-protocols >= "4.0.0" & < "8.0.0"
  317. mirage-protocols-lwt
  318. mirage-qubes < "0.2" | >= "0.4" & < "0.9.4"
  319. mirage-qubes-ipv4 < "0.9.4"
  320. mirage-random-stdlib >= "0.1.0"
  321. mirage-runtime >= "3.7.0"
  322. mirage-solo5
  323. mirage-stack >= "2.0.0" & < "4.0.0"
  324. mirage-stack-lwt
  325. mirage-time >= "2.0.0"
  326. mirage-time-lwt
  327. mirage-time-unix
  328. mirage-types-lwt < "3.7.1"
  329. mirage-unix >= "3.0.0"
  330. mirage-vnetif
  331. mirage-vnetif-stack
  332. mirage-www >= "1.1.0"
  333. mirage-xen
  334. mirror
  335. moonpool-lwt
  336. mqtt = "0.0.2"
  337. mrmime >= "0.5.0"
  338. multipart-form-data >= "0.2.0"
  339. multipart_form >= "0.2.0" & < "0.4.0"
  340. multipart_form-lwt < "0.6.0"
  341. mwt
  342. naboris < "0.1.1"
  343. nanomsg
  344. nbd = "2.1.1" | >= "4.0.3"
  345. nbd-tool
  346. nbd-unix
  347. netchannel
  348. nocrypto >= "0.5.4"
  349. nottui-lwt
  350. nproc
  351. nsq >= "0.4.0"
  352. obrowser
  353. obuilder < "0.4"
  354. obus >= "1.2.1"
  355. ocaml-variants >= "4.00.1+mirage-unix" & < "4.00.1+open-types"
  356. ocluster < "0.2"
  357. ocluster-api < "0.2"
  358. ocplib-concur
  359. ocplib-resto
  360. ocsigen-start >= "4.1.0" & < "4.7.0"
  361. ocsigenserver >= "2.10"
  362. ocsipersist
  363. ocsipersist-dbm
  364. ocsipersist-lib
  365. ocsipersist-pgsql
  366. ocsipersist-sqlite
  367. odoc >= "2.0.0" & < "2.1.0"
  368. ojquery
  369. ojs-base < "0.6.0"
  370. opam-compiler < "0.2.0"
  371. opam-sync-github-prs
  372. openflow < "0.2.0"
  373. opium >= "0.11.0" & != "0.16.0" & < "0.19.0"
  374. opium_kernel
  375. opomodoro
  376. order-i3-xfce
  377. ordma >= "0.0.3"
  378. osc-lwt
  379. oskel >= "0.3.0"
  380. ounit-lwt < "2.2.0"
  381. ounit2-lwt
  382. owork
  383. ox < "1.1.0"
  384. paf
  385. paf-cohttp
  386. passage
  387. pcap-format >= "0.3.3" & < "0.5.0"
  388. pgx_lwt
  389. pgx_lwt_mirage
  390. pgx_lwt_unix < "2.0"
  391. plist-xml-lwt
  392. plotkicadsch >= "0.4.0"
  393. ppx_defer >= "0.4.0"
  394. ppx_deriving_rpc
  395. ppx_json_types
  396. ppx_netblob
  397. ppx_rapper_lwt
  398. ppx_sqlexpr
  399. prof_spacetime
  400. prometheus
  401. prometheus-app
  402. promise_jsoo_lwt
  403. protocol-9p >= "0.10.0"
  404. protocol-9p-unix
  405. qcow >= "0.8.1"
  406. qcow-format < "0.3"
  407. qcow-tool
  408. qfs = "0.5" | >= "0.7"
  409. quests
  410. rawlink >= "1.0" & < "2.1"
  411. rawlink-lwt
  412. redis-lwt
  413. resource-pooling >= "0.3.2"
  414. resp
  415. resp-mirage >= "0.10.0"
  416. resp-unix >= "0.10.0"
  417. resto
  418. resto-cohttp-client >= "0.4"
  419. resto-cohttp-self-serving-client
  420. resto-cohttp-server >= "0.4"
  421. resto-directory >= "0.4"
  422. riak
  423. ringo-lwt
  424. river
  425. rpc >= "1.5.1" & < "7.1.0"
  426. rpclib-js
  427. rpclib-lwt
  428. SZXX < "2.0.0"
  429. sanddb
  430. scgi
  431. sendmail-lwt
  432. serial
  433. session-cohttp-lwt
  434. session-cookie-lwt
  435. session-postgresql-lwt >= "0.4.1"
  436. sessions
  437. shared-block-ring < "2.3.0" | >= "3.0.0"
  438. shared-memory-ring >= "1.2.0" & < "2.0.0"
  439. shared-memory-ring-lwt
  440. slacko
  441. slipshow
  442. socket-daemon < "0.3.0"
  443. speed
  444. spin < "0.6.0"
  445. spotify-web-api < "0.2.1"
  446. sqlexpr = "0.7.1" | >= "0.9.0"
  447. statsd-client
  448. stog >= "0.16.0" & < "0.19.0"
  449. syndic >= "1.4" & < "1.6.0"
  450. tar-format >= "0.4.1"
  451. tar-mirage < "2.2.0"
  452. tar-unix < "3.0.0"
  453. tcpip >= "3.1.1" & < "3.4.1" | >= "4.1.0"
  454. teash
  455. telegraml
  456. tezos-p2p >= "11.0" & < "13.0"
  457. tezos-stdlib < "9.3"
  458. tezos-stdlib-unix < "9.0"
  459. tftp
  460. themoviedb
  461. tls = "0.10.1" | >= "0.10.6" & < "0.16.0"
  462. tls-lwt < "0.17.4"
  463. tls-mirage
  464. transmission-rpc
  465. tube >= "4.3.0"
  466. tuntap >= "1.0.0" & < "1.7.0" | >= "2.0.0"
  467. twirp_cohttp_lwt_unix
  468. typerex-lldb
  469. u2f
  470. uring
  471. uspf
  472. uspf-lwt
  473. utop >= "1.4.0"
  474. uwt >= "0.3.0"
  475. vchan >= "0.9.7" & < "2.0.0" | >= "2.0.3"
  476. vchan-unix
  477. vchan-xen
  478. vercel
  479. vhd-format >= "0.7.0" & < "0.8.0"
  480. vhd-format-lwt >= "0.12.0"
  481. vhd-tool < "0.12.0"
  482. vmnet >= "1.3.2"
  483. vpnkit >= "0.2.0"
  484. vue-jsoo < "0.3"
  485. webauthn
  486. websocket < "2.3"
  487. xe-unikernel-upload
  488. xen-api-client < "0.9.14"
  489. xen-block-driver
  490. xen-evtchn < "1.0.6" | >= "2.0.0"
  491. xen-evtchn-unix
  492. xen-gnt >= "2.2.3"
  493. xen-gnt-unix >= "4.0.2"
  494. xenctrl < "0.9.29" | >= "0.9.32"
  495. xenstore >= "1.3.0"
  496. xenstore_transport >= "1.0.0"
  497. xentropyd
  498. yurt < "0.3"
  499. zarr-lwt
  500. zmq-lwt

Conflicts (1)

  1. ocaml-variants = "4.02.1+BER"
OCaml

Innovation. Community. Security.