diff --git a/zarr-lwt/Zarr_lwt/Storage/HttpStore/index.html b/zarr-lwt/Zarr_lwt/Storage/HttpStore/index.html index 7f2fd8e..5acf3b0 100644 --- a/zarr-lwt/Zarr_lwt/Storage/HttpStore/index.html +++ b/zarr-lwt/Zarr_lwt/Storage/HttpStore/index.html @@ -1,10 +1,10 @@ -
Storage.HttpStore
include Zarr.Storage.STORE with module Deferred = Deferred
module Deferred = Deferred
module Group : sig ... end
module Array : sig ... end
val hierarchy :
+HttpStore (zarr-lwt.Zarr_lwt.Storage.HttpStore) Module Storage.HttpStore
An Lwt-aware Http storage backend for a Zarr v3 hierarchy.
include Zarr.Storage.STORE with module Deferred = Deferred
module Deferred = Deferred
module Group : sig ... end
module Array : sig ... end
val hierarchy :
t ->
(Zarr.Node.Array.t list * Zarr.Node.Group.t list) Deferred.t
hierarchy t
returns p
where p
is a pair of lists representing all nodes in store t
. The first element of the pair is a list of all array nodes, and the second element is a list of all group nodes. This operation returns a pair of empty lists if store t
is empty.
val clear : t -> unit Deferred.t
clear t
clears the store t
by deleting all nodes. If the store is already empty, this is a no-op.
val with_open :
?redirects:int ->
?tries:int ->
?timeout:int ->
string ->
- (t -> 'a Lwt.t) ->
- 'a Lwt.t
+ (t -> 'a) ->
+ 'a
Zarr_lwt.Storage
module Deferred : Zarr.Types.Deferred with type 'a t = 'a Lwt.t
module MemoryStore : Zarr.Memory.S with module Deferred = Deferred
An Lwt-aware in-memory storage backend for Zarr v3 hierarchy.
module ZipStore : Zarr.Zip.S with module Deferred = Deferred
An Lwt-aware Zip file storage backend for a Zarr v3 hierarchy.
module FilesystemStore : sig ... end
An Lwt-aware local filesystem storage backend for a Zarr V3 hierarchy.
module HttpStore : sig ... end
module AmazonS3Store : sig ... end
An Lwt-aware Amazon S3 bucket storage backend for a Zarr V3 hierarchy.
Zarr_lwt.Storage
module Deferred : Zarr.Types.Deferred with type 'a t = 'a Lwt.t
module MemoryStore : Zarr.Memory.S with module Deferred = Deferred
An Lwt-aware in-memory storage backend for Zarr v3 hierarchy.
module ZipStore : Zarr.Zip.S with module Deferred = Deferred
An Lwt-aware Zip file storage backend for a Zarr v3 hierarchy.
module HttpStore : Zarr.Http.S with module Deferred = Deferred
An Lwt-aware Http storage backend for a Zarr v3 hierarchy.
module FilesystemStore : sig ... end
An Lwt-aware local filesystem storage backend for a Zarr V3 hierarchy.
module AmazonS3Store : sig ... end
An Lwt-aware Amazon S3 bucket storage backend for a Zarr V3 hierarchy.
Storage.HttpStore
include Zarr.Storage.STORE with module Deferred = Deferred
module Deferred = Deferred
module Group : sig ... end
module Array : sig ... end
val hierarchy :
+HttpStore (zarr-sync.Zarr_sync.Storage.HttpStore) Module Storage.HttpStore
A blocking I/O Http storage backend for a Zarr v3 hierarchy.
include Zarr.Storage.STORE with module Deferred = Deferred
module Deferred = Deferred
module Group : sig ... end
module Array : sig ... end
val hierarchy :
t ->
(Zarr.Node.Array.t list * Zarr.Node.Group.t list) Deferred.t
hierarchy t
returns p
where p
is a pair of lists representing all nodes in store t
. The first element of the pair is a list of all array nodes, and the second element is a list of all group nodes. This operation returns a pair of empty lists if store t
is empty.
val clear : t -> unit Deferred.t
clear t
clears the store t
by deleting all nodes. If the store is already empty, this is a no-op.
val with_open :
?redirects:int ->
diff --git a/zarr-sync/Zarr_sync/Storage/index.html b/zarr-sync/Zarr_sync/Storage/index.html
index 10e9d04..35271a1 100644
--- a/zarr-sync/Zarr_sync/Storage/index.html
+++ b/zarr-sync/Zarr_sync/Storage/index.html
@@ -1,2 +1,2 @@
-Storage (zarr-sync.Zarr_sync.Storage) Module Zarr_sync.Storage
module Deferred : Zarr.Types.Deferred with type 'a t = 'a
module MemoryStore : Zarr.Memory.S with module Deferred = Deferred
A blocking I/O in-memory storage backend for Zarr v3 hierarchy.
module ZipStore : Zarr.Zip.S with module Deferred = Deferred
A blocking I/O Zip file storage backend for a Zarr v3 hierarchy.
module FilesystemStore : sig ... end
A blocking I/O local filesystem storage backend for a Zarr v3 hierarchy.
module HttpStore : sig ... end
+Storage (zarr-sync.Zarr_sync.Storage) Module Zarr_sync.Storage
module Deferred : Zarr.Types.Deferred with type 'a t = 'a
module MemoryStore : Zarr.Memory.S with module Deferred = Deferred
A blocking I/O in-memory storage backend for Zarr v3 hierarchy.
module ZipStore : Zarr.Zip.S with module Deferred = Deferred
A blocking I/O Zip file storage backend for a Zarr v3 hierarchy.
module HttpStore : Zarr.Http.S with module Deferred = Deferred
A blocking I/O Http storage backend for a Zarr v3 hierarchy.
module FilesystemStore : sig ... end
A blocking I/O local filesystem storage backend for a Zarr v3 hierarchy.