You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lwt_preemptive uses Event channels which under the hood allocate one condition variable per Event.sync. The parameters given to caml_alloc_custom when creating the condition variable indicate that at most 5000 values can be left unreclaimed. Heavy GC load ensues.
Lwt_preemptive
usesEvent
channels which under the hood allocate one condition variable perEvent.sync
. The parameters given tocaml_alloc_custom
when creating the condition variable indicate that at most 5000 values can be left unreclaimed. Heavy GC load ensues.See mfp/ocaml-sqlexpr#13
Also, should a (performance) bug be filed against OCaml's
Event
module?The text was updated successfully, but these errors were encountered: