polars_python/functions/
string_cache.rs

1use pyo3::prelude::*;
2
3#[pyfunction]
4pub fn enable_string_cache() {
5    // The string cache no longer exists.
6}
7
8#[pyfunction]
9pub fn disable_string_cache() {
10    // The string cache no longer exists.
11}
12
13#[pyfunction]
14pub fn using_string_cache() -> bool {
15    // The string cache no longer exists.
16    true
17}
18
19#[pyclass]
20pub struct PyStringCacheHolder;
21
22#[pymethods]
23impl PyStringCacheHolder {
24    #[new]
25    fn new() -> Self {
26        Self
27    }
28}