Procházet zdrojové kódy

Added note about culling in database cache backend docs.

Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
Mike Lissner před 4 roky
rodič
revize
6e155d280d
1 změnil soubory, kde provedl 4 přidání a 0 odebrání
  1. 4 0
      docs/topics/cache.txt

+ 4 - 0
docs/topics/cache.txt

@@ -195,6 +195,10 @@ In this example, the cache table's name is ``my_cache_table``::
         }
     }
 
+Unlike other cache backends, the database cache does not support automatic
+culling of expired entries at the database level. Instead, expired cache
+entries are culled each time ``add()``, ``set()``, or ``touch()`` is called.
+
 Creating the cache table
 ~~~~~~~~~~~~~~~~~~~~~~~~