package aches
Caches (bounded-size stores) for in-memory values and for resources
Install
Dune Dependency
Authors
Maintainers
Sources
ringo-v1.1.0.tar.gz
md5=c9c5400e7ae19100b945279835ff3e5c
sha512=7f37b721e2ca32e5e96fbf8df1bbd72c9060b6826bd95a21ea81af5fdd0c1961d3d7fb41210966aac7c277ec7f91fd32e3e284b583cb02121dc589646642f5c0
doc/src/aches.rache/sized.ml.html
Source file sized.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
(*****************************************************************************) (* *) (* Open Source License *) (* Copyright (c) 2022 Nomadic Labs, <contact@nomadic-labs.com> *) (* *) (* Permission is hereby granted, free of charge, to any person obtaining a *) (* copy of this software and associated documentation files (the "Software"),*) (* to deal in the Software without restriction, including without limitation *) (* the rights to use, copy, modify, merge, publish, distribute, sublicense, *) (* and/or sell copies of the Software, and to permit persons to whom the *) (* Software is furnished to do so, subject to the following conditions: *) (* *) (* The above copyright notice and this permission notice shall be included *) (* in all copies or substantial portions of the Software. *) (* *) (* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR*) (* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *) (* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL *) (* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER*) (* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING *) (* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER *) (* DEALINGS IN THE SOFTWARE. *) (* *) (*****************************************************************************) module EmptyTransferMap (H: Hashtbl.HashedType) : Sigs.TRANSFER with type key = H.t = struct type key = H.t type 'resource t = (key -> 'resource -> unit) let create destroy _ = destroy let put destroy k r = (* [put] transfers ownership, the cache is responsible for cleaning up, no space in the cache, destroy now *) destroy k r let take _ _ = None let take_all _ = [] let take_some _ _ = [] let borrow _ _ _ = None let fold _ _ acc = acc let fold_oldest_first _ _ acc = acc let remove _ _ = () let filter _ _ = () let clear _ = () let length _ = 0 let capacity _ = 0 module H = H end module SingletonTransferMap (H: Hashtbl.HashedType) : Sigs.TRANSFER with type key = H.t = struct type key = H.t type 'resource t = { mutable content: (key * 'resource) option; destroy: (key -> 'resource -> unit); } let create destroy _ = { content = None; destroy } let put r k v = begin match r.content with | None -> () | Some (k, v) -> (* NOTE: The user *shouldn't* put resources that it doesn't have ownership of. Thus they *shouldn't* put the the resource that's already in the cache. Thus this [v] *shouldn't* be the same as the function's parameter. *) r.destroy k v end; r.content <- Some (k, v) let take r k = match r.content with | None -> None | Some (kk, vv) -> if H.equal k kk then (r.content <- None; Some vv) else None let take_all r = match r.content with | None -> [] | Some kv -> r.content <- None; [kv] let take_some r f = match r.content with | None -> [] | Some ((k, v) as kv) -> if f k v then (r.content <- None; [kv]) else [] let borrow r k f = match r.content with | None -> None | Some (kk, vv) -> if H.equal k kk then Some (f vv) else None let fold f r acc = match r.content with | None -> acc | Some (k, v) -> f k v acc let fold_oldest_first f r acc = match r.content with | None -> acc | Some (k, v) -> f k v acc let remove r k = match r.content with | None -> () | Some (kk, rr) -> if H.equal k kk then (r.destroy kk rr; r.content <- None) let filter r f = match r.content with | None -> () | Some (k, v) -> if not (f k v) then (r.destroy k v; r.content <- None) let clear r = match r.content with | None -> () | Some (k, v) -> r.destroy k v; r.content <- None let length r = match r.content with None -> 0 | Some _ -> 1 let capacity _ = 1 module H = H end module EmptyBorrowMap (H: Hashtbl.HashedType) : Sigs.BORROW with type key = H.t = struct type key = H.t type 'resource t = (key -> 'resource -> unit) let create destroy _ = destroy let borrow_or_make destroy k make f = let resource = make k in let result = f resource in destroy k resource; result let borrow _ _ _ = None let fold _ _ acc = acc let fold_oldest_first _ _ acc = acc let remove _ _ = () let filter _ _ = () let clear _ = () let length _ = 0 let capacity _ = 0 module H = H end module SingletonBorrowMap (H: Hashtbl.HashedType) : Sigs.BORROW with type key = H.t = struct type key = H.t type 'resource t = { mutable content: (key * 'resource) option; destroy: (key -> 'resource -> unit); } let create destroy _ = { content = None; destroy; } let borrow_or_make r k make f = begin match r.content with | None -> let resource = make k in let result = f resource in r.content <- Some (k, resource); result | Some (kk, v) -> if H.equal k kk then f v else begin r.destroy k v; let resource = make k in r.content <- Some (k, resource); let result = f resource in result end end let borrow r k f = match r.content with | None -> None | Some (kk, vv) -> if H.equal k kk then Some (f vv) else None let fold f r acc = match r.content with | None -> acc | Some (k, v) -> f k v acc let fold_oldest_first f r acc = match r.content with | None -> acc | Some (k, v) -> f k v acc let remove r k = match r.content with | None -> () | Some (kk, rr) -> if H.equal k kk then (r.destroy kk rr; r.content <- None) let filter r f = match r.content with | None -> () | Some (k, v) -> if not (f k v) then (r.destroy k v; r.content <- None) let clear r = match r.content with | None -> () | Some (k, v) -> r.destroy k v; r.content <- None let length r = match r.content with None -> 0 | Some _ -> 1 let capacity _ = 1 module H = H end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>