Skip to content

Commit

Permalink
Refactor the graph storage to reduce memory usage
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianmurariu committed Jun 28, 2024
1 parent 0f6bc21 commit 1732326
Show file tree
Hide file tree
Showing 31 changed files with 993 additions and 676 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pometry-storage-private
1 change: 1 addition & 0 deletions raphtory-benchmark/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ edition = "2021"
[dependencies]
criterion = { workspace = true }
raphtory = { path = "../raphtory", features = ["io"] }
raphtory-api = { path = "../raphtory-api" }
raphtory-graphql = { path = "../raphtory-graphql", version = "0.9.3" }
pometry-storage.workspace = true
sorted_vector_map = { workspace = true }
Expand Down
8 changes: 3 additions & 5 deletions raphtory-benchmark/benches/graph_ops.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
use common::run_graph_ops_benches;
use criterion::{criterion_group, criterion_main, Criterion};
use raphtory::{
core::utils::hashing::calculate_hash,
graph_loader::{
example::sx_superuser_graph::{sx_superuser_file, sx_superuser_graph, TEdge},
source::csv_loader::CsvLoader,
},
graph_loader::sx_superuser_graph::{sx_superuser_file, sx_superuser_graph, TEdge},
io::csv_loader::CsvLoader,
prelude::*,
};
use raphtory_api::core::utils::hashing::calculate_hash;

mod common;

Expand Down
Loading

0 comments on commit 1732326

Please sign in to comment.