package lwt

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

Install

dune-project
 Dependency

Authors

Maintainers

Sources

5.7.0.tar.gz
md5=737039d29d45b2d2b35db6931c8d75c6
sha512=42e629920783428673b99c9d7a639237c9e6b35079b5d907bc67e7ea506acf9edadc48cec580bdcfd2410ed9412bf5e6bcc8b09de2fa7d35ce1490973d05ddd1

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 GitHub Actions 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:

open Lwt.Syntax

let () =
  let request =
    let* 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* () = write outgoing "GET / HTTP/1.1\r\n" in
      let* () = write outgoing "Connection: close\r\n\r\n" in
      let* response = read incoming in
      Lwt.return (Some response)))
  in

  let timeout =
    let* () = 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 -linkpkg example.ml && ./a.out *)

In the program, functions such as Lwt_io.write create promises. The let* ... 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.

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 (5)

  1. ocplib-endian
  2. ocaml >= "4.08" & < "5.5"
  3. dune-configurator
  4. dune >= "1.8.0"
  5. cppo build & >= "1.1.0"

Dev Dependencies (1)

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

  1. 0install >= "2.15.1"
  2. aches-lwt
  3. activitypub
  4. albatross
  5. alcotest-lwt
  6. alcotest-mirage
  7. ambient-context-lwt
  8. amqp-client >= "1.1.0"
  9. amqp-client-lwt
  10. angstrom-lwt-unix >= "0.11.0"
  11. anthill
  12. anycache-lwt
  13. archi-lwt
  14. arp
  15. atproto
  16. awa-mirage
  17. aws-lwt
  18. aws-s3-lwt >= "4.8.1"
  19. awskit-lwt
  20. awskit-lwt-unix
  21. awskit-s3-lwt
  22. awskit-s3-lwt-unix
  23. awsm-lwt
  24. awso-lwt
  25. azure-cosmos-db < "0.4.0"
  26. azure-cosmos-db-lwt
  27. balancer
  28. bastet_lwt
  29. bimage-lwt
  30. bistro
  31. bitflyer
  32. bizowie-api
  33. brisk-reconciler
  34. builder
  35. builder-web
  36. bun >= "0.3.3"
  37. cachet-lwt
  38. calculon
  39. caldav
  40. camltc
  41. canary
  42. capnp-rpc-lwt < "2.0"
  43. capnp-rpc-unix < "2.1"
  44. caqti-lwt
  45. caqti-mirage
  46. carton < "1.0.0"
  47. carton-git
  48. carton-lwt
  49. catala-format >= "0.2.0"
  50. cf-lwt
  51. chamelon
  52. chamelon-unix
  53. chamo
  54. charrua-client
  55. charrua-unix
  56. chess_com_api
  57. ciao_lwt
  58. clz
  59. cmdtui-lambda-term
  60. coap
  61. coap-server-lwt
  62. cohttp-curl-lwt
  63. cohttp-lwt
  64. cohttp-lwt-jsoo
  65. cohttp-lwt-unix
  66. cohttp-mirage
  67. cohttp-server-lwt-unix
  68. comby
  69. comby-semantic
  70. conan-lwt
  71. conduit-lwt
  72. conduit-lwt-unix
  73. cowabloga
  74. crunch
  75. cstruct-lwt
  76. csv-lwt
  77. ctypes >= "0.15.0" & < "0.21.1"
  78. ctypes-foreign >= "0.21.1"
  79. curl_lwt
  80. current
  81. current-albatross-deployer
  82. current_docker
  83. current_examples
  84. current_git
  85. current_github
  86. current_gitlab
  87. current_ocluster
  88. current_rpc
  89. current_slack
  90. current_web
  91. dap
  92. data-encoding < "0.1.1"
  93. devkit >= "1.2"
  94. distributed-lwt
  95. dkim-bin < "0.8.0"
  96. dkim-lwt-unix
  97. dkim-mirage
  98. dlm
  99. dmarc
  100. dns-certify
  101. dns-cli
  102. dns-client < "7.0.3"
  103. dns-client-lwt
  104. dns-client-mirage
  105. dns-forward
  106. dns-forward-lwt-unix
  107. dns-lwt
  108. dns-mirage
  109. dns-resolver
  110. dns-server
  111. dns-stub
  112. dnsrobot
  113. dnssd
  114. docker_hub
  115. docteur >= "0.0.2"
  116. docteur-solo5
  117. docteur-unix >= "0.0.5"
  118. doi2bib
  119. dream
  120. dream-httpaf
  121. dream-pure
  122. dream-serve
  123. dropbox
  124. dune >= "3.17.2"
  125. dune-rpc-lwt
  126. earlybird
  127. elasticsearch-cli
  128. emoji = "2.0.0"
  129. equinoxe
  130. ethernet
  131. ez_api >= "1.2.0" & < "3.0.0"
  132. ezcurl-lwt
  133. ezjs_min < "0.2"
  134. ezjsonm-lwt
  135. ezresto
  136. ezresto-directory >= "0.5"
  137. faraday-lwt
  138. faraday-lwt-unix
  139. fat-filesystem
  140. fiber-lwt
  141. fsevents-lwt
  142. fswatch_lwt
  143. fuseau-lwt
  144. fxmacrodata
  145. gdbprofiler
  146. git
  147. git-cohttp
  148. git-cohttp-unix
  149. git-mirage
  150. git-paf
  151. git-unix >= "3.2.0"
  152. github
  153. github-hooks
  154. github-unix >= "4.4.0"
  155. gitlab-unix
  156. gitlab_pipeline_notifier
  157. gluten-lwt
  158. gluten-lwt-unix < "0.4.0"
  159. gluten-mirage < "0.4.0"
  160. gmocoin
  161. granary
  162. granary_repl
  163. graphql-lwt
  164. gremlin
  165. grpc-lwt
  166. guardian
  167. gufo
  168. h1
  169. h1-lwt-unix
  170. h2-lwt
  171. h2-lwt-unix < "0.10.0"
  172. h2-mirage
  173. happy-eyeballs-lwt
  174. happy-eyeballs-mirage
  175. hidapi-lwt
  176. hiredis >= "0.6"
  177. hl_yaml
  178. hockmd
  179. http-lwt-client
  180. http-mirage-client
  181. http-multipart-formdata >= "2.0.0" & < "3.0.0"
  182. httpaf-lwt-unix
  183. httpun-lwt
  184. httpun-mirage
  185. httpun-ws-lwt
  186. hvsock
  187. i3ipc
  188. influxdb-lwt
  189. inotify >= "2.4"
  190. inquire < "0.3.0"
  191. interface-prime-lwt
  192. ip2location
  193. ip2locationio
  194. ip2whois
  195. ipv6-multicast-lwt
  196. irc-client-lwt
  197. irc-client-lwt-ssl
  198. irc-client-tls
  199. irmin
  200. irmin-bench
  201. irmin-chunk
  202. irmin-cli
  203. irmin-client
  204. irmin-containers
  205. irmin-fs
  206. irmin-git
  207. irmin-graphql
  208. irmin-http
  209. irmin-indexeddb
  210. irmin-layers
  211. irmin-mirage-git
  212. irmin-mirage-graphql
  213. irmin-pack
  214. irmin-server
  215. irmin-test
  216. irmin-unix
  217. irmin-watcher
  218. joolog
  219. jose < "0.9.0"
  220. js_of_ocaml-lwt
  221. jsoo_broadcastchannel
  222. jsoo_storage
  223. jupyter
  224. jupyter-kernel
  225. kafka < "0.5"
  226. kafka_lwt
  227. kappa-agents >= "4.1.3"
  228. kappa-binaries >= "4.1.3"
  229. kappa-library
  230. ke >= "0.5"
  231. kinetic-client
  232. kubecaml
  233. lambda-runtime
  234. lambda-term
  235. lambda_streams_lwt
  236. launchd
  237. ldp
  238. learn-ocaml
  239. learn-ocaml-client
  240. ledgerwallet >= "0.4.0"
  241. letsencrypt < "2.0.0"
  242. letsencrypt-app
  243. letsencrypt-dns < "2.0.0"
  244. letters
  245. lichess_api
  246. links
  247. linol-lwt
  248. llama
  249. lru_cache
  250. lwt-canceler
  251. lwt-dllist
  252. lwt-exit
  253. lwt-parallel
  254. lwt-pipe
  255. lwt-pipeline
  256. lwt-watcher
  257. lwt_camlp4
  258. lwt_domain
  259. lwt_eio < "0.6"
  260. lwt_glib
  261. lwt_log
  262. lwt_ppx < "6.0.0~beta01"
  263. lwt_react
  264. lwt_retry
  265. lwt_ssl
  266. mariadb >= "1.2.0"
  267. markdown_monolith
  268. markup = "0.7.6"
  269. markup-lwt
  270. mdx
  271. mechaml
  272. mehari-lwt-unix
  273. mehari-mirage
  274. memtrace-mirage
  275. metrics-influx
  276. metrics-lwt
  277. metrics-unix
  278. migra
  279. mimic
  280. mindstorm-lwt
  281. mirage < "4.0.0"
  282. mirage-block >= "2.0.1"
  283. mirage-block-ccm
  284. mirage-block-combinators
  285. mirage-block-lwt
  286. mirage-block-partition
  287. mirage-block-ramdisk
  288. mirage-block-solo5
  289. mirage-block-unikraft
  290. mirage-block-unix >= "2.14.2"
  291. mirage-block-xen
  292. mirage-channel >= "4.0.1"
  293. mirage-channel-lwt
  294. mirage-clock-lwt
  295. mirage-clock-unix < "4.2.0"
  296. mirage-console-lwt
  297. mirage-crypto-rng < "0.11.3"
  298. mirage-crypto-rng-lwt
  299. mirage-crypto-rng-mirage
  300. mirage-device >= "2.0.0"
  301. mirage-flow >= "3.0.0"
  302. mirage-flow-combinators
  303. mirage-flow-lwt
  304. mirage-flow-unix
  305. mirage-fs >= "4.0.0"
  306. mirage-fs-lwt
  307. mirage-kv >= "3.0.1"
  308. mirage-kv-lwt
  309. mirage-kv-unix
  310. mirage-net >= "4.0.0"
  311. mirage-net-lwt
  312. mirage-net-macosx
  313. mirage-net-solo5
  314. mirage-net-unikraft
  315. mirage-net-unix
  316. mirage-net-xen
  317. mirage-profile
  318. mirage-protocols >= "7.0.0"
  319. mirage-protocols-lwt
  320. mirage-qubes
  321. mirage-qubes-ipv4
  322. mirage-runtime
  323. mirage-sleep
  324. mirage-solo5
  325. mirage-stack = "3.0.0"
  326. mirage-stack-lwt
  327. mirage-time >= "3.0.0"
  328. mirage-time-lwt
  329. mirage-time-unix
  330. mirage-types-lwt
  331. mirage-unikraft
  332. mirage-unix
  333. mirage-vnetif
  334. mirage-xen
  335. monorobot
  336. moonpool-lwt
  337. mqtt
  338. mrmime >= "0.5.0"
  339. multipart-form-data
  340. multipart_form >= "0.2.0" & < "0.4.0"
  341. multipart_form-cohttp-lwt < "0.6.0"
  342. multipart_form-lwt
  343. mwt
  344. naboris
  345. nbd >= "4.0.3"
  346. nbd-tool
  347. nbd-unix
  348. neo4j_bolt
  349. nocrypto
  350. nottui-lwt
  351. notty-community
  352. nproc
  353. nsq
  354. obuilder
  355. obus >= "1.2.1"
  356. ocluster
  357. ocluster-api
  358. ocluster-worker
  359. ocplib-resto
  360. ocsigenserver
  361. ocsipersist
  362. ocsipersist-dbm
  363. ocsipersist-lib
  364. ocsipersist-pgsql
  365. ocsipersist-sqlite
  366. oframl
  367. ojs-base
  368. ojs_base
  369. omigrate
  370. oneffs
  371. opam-check-npm-deps >= "4.1.0"
  372. opam-publish >= "3.0.0"
  373. opencage
  374. opentelemetry-client-cohttp-lwt
  375. opentelemetry-cohttp-lwt >= "0.4"
  376. opentelemetry-lwt
  377. opium
  378. opium-graphql
  379. opium_kernel
  380. opomodoro
  381. order-i3-xfce
  382. ordma
  383. oskel >= "0.3.0"
  384. ounit-lwt < "2.2.0"
  385. ounit2-lwt
  386. owork
  387. ozulip
  388. paf
  389. paf-cohttp
  390. passage < "0.1.8"
  391. pcap-format < "0.5.2"
  392. petrol
  393. pgn_parser
  394. pgx_lwt
  395. pgx_lwt_mirage
  396. pgx_lwt_unix < "2.0"
  397. piaf < "0.2.0"
  398. picos >= "0.3.0" & < "0.5.0"
  399. picos_lwt
  400. picos_meta
  401. plebeia >= "2.0.0"
  402. plist-xml-lwt
  403. plotkicadsch
  404. posix-getopt >= "4.0.2"
  405. ppx_defer >= "0.4.0"
  406. ppx_deriving_rpc
  407. ppx_rapper_lwt
  408. proc-smaps
  409. prof_spacetime
  410. prometheus < "2.0"
  411. prometheus-app
  412. prometheus-lwt
  413. promise_jsoo_lwt
  414. protocol-9p
  415. protocol-9p-unix
  416. proton
  417. pxshot
  418. qcow
  419. qcow-stream
  420. qcow-tool
  421. qcow-types
  422. qdrant < "0.2.0"
  423. qfs
  424. quests
  425. quickterface
  426. rawlink < "2.1"
  427. rawlink-lwt
  428. rdf_json_ld
  429. rdf_lwt
  430. redis-lwt
  431. reparse-lwt
  432. reparse-lwt-unix
  433. resource-pooling
  434. resp
  435. resp-mirage >= "0.10.0"
  436. resp-unix >= "0.10.0"
  437. resto
  438. resto-cohttp-client >= "0.4"
  439. resto-cohttp-self-serving-client
  440. resto-cohttp-server >= "0.4" & < "0.6" | >= "0.9"
  441. resto-directory >= "0.4"
  442. ringo-lwt
  443. river
  444. rock
  445. rpclib-js
  446. rpclib-lwt
  447. SZXX < "4.0.0"
  448. sanddb
  449. scgi
  450. sendmail-lwt
  451. sendmail-mirage
  452. serial
  453. server-reason-react < "0.4.0"
  454. session-cohttp-lwt
  455. session-cookie-lwt
  456. session-postgresql-lwt
  457. sessions
  458. shared-block-ring
  459. shared-memory-ring-lwt
  460. sherlodoc
  461. sihl < "0.2.0"
  462. slack
  463. slacko
  464. slipshow < "0.12.0"
  465. smtml >= "0.7.0"
  466. speed
  467. spin < "0.8.0"
  468. spoke
  469. stk
  470. stog
  471. swapfs
  472. syguslib-utils
  473. syndic >= "1.4" & < "1.6.0"
  474. tar-mirage
  475. tar-unix
  476. tcpip
  477. telegraml
  478. terminus
  479. testcontainers
  480. testo-lwt
  481. tezt
  482. tidy_email
  483. timmy-lwt
  484. tls >= "0.10.6" & < "0.16.0"
  485. tls-lwt
  486. tls-mirage
  487. tube
  488. tuntap
  489. twirp_cohttp_lwt_unix
  490. uring
  491. uspf
  492. uspf-lwt
  493. uspf-mirage
  494. utcp
  495. utop
  496. uwt
  497. vchan
  498. vchan-unix
  499. vchan-xen
  500. vercel
  501. vhd-format-lwt
  502. vmnet
  503. vue-jsoo < "0.3"
  504. wayland < "2.0"
  505. webauthn
  506. xen-evtchn
  507. xen-evtchn-unix
  508. xen-gnt
  509. xen-gnt-unix
  510. xenstore
  511. xenstore-tool
  512. xenstore_transport
  513. xlsx2csv
  514. yocaml_git
  515. yocaml_unix < "2.0.0"
  516. zarr-lwt
  517. zmq-lwt >= "5.2.1"

Conflicts

None