File tree Expand file tree Collapse file tree 6 files changed +10
-1
lines changed Expand file tree Collapse file tree 6 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 11(* rocksdb.ml -- expose RocksDB operations for Mina *)
2+ open Core_kernel
23
34type t = { uuid : Uuid.Stable.V1 .t ; db : (Rocks .t [@ sexp.opaque]) }
45[@@ deriving sexp ]
Original file line number Diff line number Diff line change 1+ open Core_kernel
2+
13type uuid : = Uuid.Stable.V1 .t
24
35type key : = Bigstring .t
Original file line number Diff line number Diff line change 22 (name rocksdb)
33 (public_name rocksdb)
44 (library_flags -linkall)
5- (flags -open Core_kernel )
5+ (flags (:standard -warn-error +a) )
66 (libraries
77 ;; opam libraries
88 async
Original file line number Diff line number Diff line change 1+ open Core_kernel
2+
13module Key = struct
24 module type S = sig
35 type 'a t
Original file line number Diff line number Diff line change 1+ open Core_kernel
2+
13module Make (Key : Binable.S ) (Value : Binable.S ) :
24 Key_value_database.Intf. S
35 with module M := Key_value_database.Monad. Ident
Original file line number Diff line number Diff line change 1+ open Core_kernel
2+
13module Make (Key : Binable.S ) (Value : Binable.S ) :
24 Key_value_database.Intf. S
35 with module M := Key_value_database.Monad. Ident
You can’t perform that action at this time.
0 commit comments