Skip to content

Check if the global string cache is enabled

Source code

Description

This function simply checks if the global string cache is active.

Usage

pl$using_string_cache()

Value

A logical value

See Also

pl$with_string_cache pl$enable_enable_cache

Examples

library(polars)

pl$enable_string_cache()
pl$using_string_cache()
#> [1] TRUE
pl$disable_string_cache()
pl$using_string_cache()
#> [1] FALSE