This release contains a large refactor, creating classes `Seq` and `FileSeq` and using them in many places
in the code.
`BiglistBase` gets a new method `files`, returning a `FileSeq`.
The functions related to iterating over `FileReader`s (sequentially or concurrently) are moved to
`FileSeq`. Many related methods in `BiglistBase` are deprecated.
There are other deprecations and renamings, for example,
- Class renamings: `ListView` -> `Slicer`; `ChainedList` -> `Chain`.
- Deprecated the parameter `thread_pool_executor` to `__init__` and `__new__`.
The new class `Seq` and the renamed classes `Chain` and `Slicer` are in the module `_util`.
Breaking changes
Previously, as new data items are `append`ed to a `Biglist`,
data items that are not yet `flush`ed, i.e. not persisted, hence only in memory buffer,
are immediately included in item access (by `__getitem__`), iteration (by `__iter__`),
and counted in the length of the Biglist. Now these elements are not included in these operations.
Removed
- `BiglistBase.{resolve_path, lockfile}`. These methods are replaced by direct calls to functions from `upathlib`.
- Parameter `require_exists` to `BiglistBase.__init__`.
Added
- `Biglist` gets a new `storage_format`--'parquet'--for simple data structures.