mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 15:44:31 +03:00
33f713a8ab
This does two things: 1. It optimizes the constructions of `SumTree`s to not insert nodes one-by-one, but instead inserts them level-by-level. That makes it more efficient to construct large `SumTree`s. 2. It adds a `from_par_iter` constructor that parallelizes the construction of `SumTree`s. In combination, **loading a 500MB plain text file went from from ~18seconds down to ~2seconds**. Disclaimer: I didn't write any of this code, lol! It's all @as-cii and @nathansobo. Release Notes: - Improved performance when opening very large files. --------- Co-authored-by: Antonio Scandurra <me@as-cii.com> Co-authored-by: Julia <julia@zed.dev>
21 lines
312 B
TOML
21 lines
312 B
TOML
[package]
|
|
name = "sum_tree"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "Apache-2.0"
|
|
|
|
[lib]
|
|
path = "src/sum_tree.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
arrayvec = "0.7.1"
|
|
rayon = "1.8"
|
|
log.workspace = true
|
|
|
|
[dev-dependencies]
|
|
ctor.workspace = true
|
|
env_logger.workspace = true
|
|
rand.workspace = true
|