Current section
Files
Jump to
Current section
Files
lib/caches/chromadb_collections_cache_warmer.ex
defmodule ExChromaDb.Caches.ChromadbCollectionsCacheWarmer do
@moduledoc """
Module to warm the Collections cache.
"""
use Cachex.Warmer
@doc """
Executes this cache warmer.
"""
def execute(_) do
# We don't need to warm the cache for now.
:ignore
end
end