lance 4.0.0

A columnar data format that is 100x faster than Parquet for random access.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright The Lance Authors

//! I/O utilities.

pub mod commit;
pub mod deletion;
pub mod exec;

pub use lance_io::{
    bytes_read_counter, iops_counter,
    object_store::{
        ObjectStore, ObjectStoreParams, ObjectStoreRegistry, StorageOptionsAccessor,
        WrappingObjectStore,
    },
    stream::RecordBatchStream,
};