-
-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Make persistent set durable * set->pset correction * Fix io handlers * avoid flushing for mem db * Move index config to index namespaces * Undo reformatting * Fix config test * Bump persistent-sorted-set and add cache with freeing. * Fix temporal-upsert speed by using efficient index to lookup old value. * Add threadsafe persistent-sorted-set, reactivate benchmarks. * Use polymorphism instead of manual dispatch with satisfies?, add type hints. * Handle storage configuration through cache-size parameter. Must be > 0 now. * Add type hints * Add switch for flush * Improve upsert comparators * Separate concepts of search cache and store cache * Use eavt index also for upsert to retrieve old-datom once instead of doing indexwise lookups. * Use upstream pss implementation from storage branch. Cleanups. * Make store and hashing configurable. Improve performance. * Fix cache configuration loading including setting proper defaults. * Default config to no crypto-hashing to provide higher performance. * Use upstream pss. * Set default-index to persistent-set and add configuration guard. * Update default index in API test. * Don't fail config index mismatch, but use stored setting and warn. Reduce log level for storage to trace, same for transact data. * Fix reinitialization of read handlers. * Bump konserve version. Co-authored-by: Christian Weilbach <[email protected]>
- Loading branch information
Showing
37 changed files
with
902 additions
and
667 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
/classes | ||
/checkouts | ||
pom.xml.asc | ||
*.jar | ||
replikativ-datahike.jar | ||
*.class | ||
/.lein-* | ||
/.nrepl-port | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
|
||
set -o errexit | ||
set -o pipefail | ||
|
||
echo "Recompiling Java" | ||
clj -T:build clean | ||
clj -T:build compile | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -o errexit | ||
set -o pipefail | ||
|
||
TIMBRE_LEVEL=':fatal' ./bin/kaocha --focus :clj-hht "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -o errexit | ||
set -o pipefail | ||
|
||
TIMBRE_LEVEL=':fatal' ./bin/kaocha --focus :clj-pss "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.