Record query memory deallocation
(&self, bytes: u64)
| 189 | |
| 190 | /// Record query memory deallocation |
| 191 | pub fn record_query_deallocation(&self, bytes: u64) { |
| 192 | self.query_bytes.fetch_sub(bytes, Ordering::Relaxed); |
| 193 | } |
| 194 | |
| 195 | /// Check current memory pressure and take action if needed |
| 196 | pub fn check_memory_pressure(&self) { |
no outgoing calls
no test coverage detected