mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-15 09:22:55 +00:00
## Problem The endpoint filter cache is still unused because it's not yet reliable enough to be used. It only consumes a lot of memory. ## Summary of changes Remove the code. Needs a new design. neondatabase/cloud#30634
7 lines
144 B
Rust
7 lines
144 B
Rust
pub(crate) mod common;
|
|
pub(crate) mod project_info;
|
|
mod timed_lru;
|
|
|
|
pub(crate) use common::{Cache, Cached};
|
|
pub(crate) use timed_lru::TimedLru;
|