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
Copy file name to clipboardExpand all lines: _posts/2019-05-02-zarr-2.3-release.md
+75-40Lines changed: 75 additions & 40 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,63 +1,81 @@
1
1
---
2
2
layout: post
3
3
title: "Zarr Python 2.3 release"
4
-
date: 2019-05-02
4
+
date: 2019-05-23
5
5
categories: zarr python release
6
6
---
7
7
8
-
Recently we released version 2.3 of the Python Zarr package, which
9
-
implements the Zarr protocol for storing N-dimensional typed arrays,
10
-
and is designed for use in distributed and parallel computing. This
11
-
post provides an overview of new features in this release, and some
12
-
information about future directions for Zarr.
8
+
Recently we released version 2.3 of the [Python Zarr
9
+
package](https://zarr.readthedocs.io/en/stable/), which implements the
10
+
Zarr protocol for storing N-dimensional typed arrays, and is designed
11
+
for use in distributed and parallel computing. This post provides an
12
+
overview of new features in this release, and some information about
13
+
future directions for Zarr.
13
14
14
15
## New storage options for distributed computing
15
16
16
17
A key feature of the Zarr protocol is that the underlying storage
17
18
system is decoupled from other components via a simple key/value
18
19
interface. In Python, this interface corresponds to the
19
-
[`MutableMapping` interface](@@TODO), which is the interface that
20
-
Python dictionaries (`dict`) implement. The simplicity of this
21
-
interface means it is relatively straightforward to add support for a
22
-
range of different storage systems. The 2.3 release adds support for
23
-
storage using [SQLite](https://zarr.readthedocs.io/en/stable/api/storage.html#zarr.storage.SQLiteStore), [Redis](https://zarr.readthedocs.io/en/stable/api/storage.html#zarr.storage.RedisStore), [MongoDB](https://zarr.readthedocs.io/en/stable/api/storage.html#zarr.storage.MongoDBStore) and
0 commit comments