Skip to content

Commit

Permalink
expand limitations
Browse files Browse the repository at this point in the history
  • Loading branch information
gbeckers committed Oct 4, 2023
1 parent ceee772 commit 226048c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
13 changes: 9 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,16 @@ Features
library for out-of-core computation on very large arrays.
- Minimal dependencies, only `NumPy <http://www.numpy.org/>`__.

Drawbacks
---------
Limitations
-----------
- No `structured (record) arrays <https://numpy.org/doc/stable/user/basics.rec.html>`__
supported yet, just
`ndarrays <https://numpy.org/doc/stable/reference/arrays.ndarray.html>`__
- No string data, just numeric.
- No compression, although compression for archiving purposes is supported.
- Array storages uses multiple files as binary data is separated from text
documentation and metadata.
- Uses multiple files per array, as binary data is separated from text
documentation and metadata. This can be a disadvantage in terms of storage
space if you have very many very small arrays.

Installation
------------
Expand Down
13 changes: 9 additions & 4 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,16 @@ Features
library for out-of-core computation on very large arrays.
- Minimal dependencies, only `NumPy <http://www.numpy.org/>`__.

Drawbacks
---------
Limitations
-----------
- No `structured (record) arrays <https://numpy.org/doc/stable/user/basics.rec.html>`__
supported yet, just
`ndarrays <https://numpy.org/doc/stable/reference/arrays.ndarray.html>`__
- No string data, just numeric.
- No compression, although compression for archiving purposes is supported.
- Array storages uses multiple files as binary data is separated from text
documentation and metadata.
- Uses multiple files per array, as binary data is separated from text
documentation and metadata. This can be a disadvantage in terms of storage
space if you have very many very small arrays.

Darr officially depends on Python 3.9 or higher. Older versions may work
(probably >= 3.6) but are not tested anymore.
Expand Down

0 comments on commit 226048c

Please sign in to comment.