-
Notifications
You must be signed in to change notification settings - Fork 465
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit adds a module for an expression cache. It adds the functionality to durably cache optimized expressions. It uses the durable_cache module in its implementation. The expression cache is run on its own task, so that callers can insert new entries without blocking on the insert completing. The adapter doesn't use the expression cache yet, that is saved for a later commit. Works towards resolving #MaterializeInc/database-issues/issues/8384
- Loading branch information
Showing
15 changed files
with
705 additions
and
29 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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 |
---|---|---|
|
@@ -96,6 +96,7 @@ mod migrate; | |
|
||
mod apply; | ||
mod dataflow_expiration; | ||
mod expr_cache; | ||
mod open; | ||
mod state; | ||
mod transact; | ||
|
Oops, something went wrong.