From 689c655f75aea686a1f07a57c3572484882da439 Mon Sep 17 00:00:00 2001 From: Ryan Jackson Date: Thu, 16 May 2024 08:47:25 -0600 Subject: [PATCH 1/2] Update the list of maintainers. --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d86ca94..0ab8bdf 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,3 @@ - go-datastructures ================= @@ -150,7 +149,7 @@ interface and the most expensive operation in CPU profiling is the interface method which in turn calls into runtime.assertI2T. We need generics. #### Immutable B Tree -A btree based on two principals, immutablability and concurrency. +A btree based on two principals, immutability and concurrency. Somewhat slow for single value lookups and puts, it is very fast for bulk operations. A persister can be injected to make this index persistent. @@ -229,6 +228,6 @@ Requirements to commit here: ### Maintainers - - - Dustin Hiatt <[dustin.hiatt@workiva.com](mailto:dustin.hiatt@workiva.com)> - Alexander Campbell <[alexander.campbell@workiva.com](mailto:alexander.campbell@workiva.com)> + - Dustin Hiatt <[dustin.hiatt@workiva.com](mailto:dustin.hiatt@workiva.com)> + - Ryan Jackson <[ryan.jackson@workiva.com](mailto:ryan.jackson@workiva.com)> From 9c00bdee33eb91bfcb7fc37aff2adf20c92ead22 Mon Sep 17 00:00:00 2001 From: Ryan Jackson Date: Thu, 16 May 2024 08:58:11 -0600 Subject: [PATCH 2/2] DT-24458: The principal matter is to start with good principles. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0ab8bdf..b4480ef 100644 --- a/README.md +++ b/README.md @@ -149,7 +149,7 @@ interface and the most expensive operation in CPU profiling is the interface method which in turn calls into runtime.assertI2T. We need generics. #### Immutable B Tree -A btree based on two principals, immutability and concurrency. +A btree based on two principles, immutability and concurrency. Somewhat slow for single value lookups and puts, it is very fast for bulk operations. A persister can be injected to make this index persistent.