[#BloombergLP-bdlcc-Cache-2constructor-0a7] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlcc.adoc[bdlcc]::xref:BloombergLP/bdlcc/Cache.adoc[Cache]::Cache :relfileprefix: ../../../ :mrdocs: Constructors == Synopses Declared in `<bdlcc_cache.h>` Create an empty LRU cache having no size limit. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- explicit xref:BloombergLP/bdlcc/Cache/2constructor-0c.adoc[Cache](xref:BloombergLP/bslma/Allocator.adoc[bslma::Allocator]* basicAllocator = 0); ---- [.small]#xref:BloombergLP/bdlcc/Cache/2constructor-0c.adoc[_» more..._]# Create an empty cache with the specified eviction policy and watermarks. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:BloombergLP/bdlcc/Cache/2constructor-0ac.adoc[Cache]( xref:BloombergLP/bdlcc/CacheEvictionPolicy/Enum.adoc[CacheEvictionPolicy::Enum] evictionPolicy, std::size_t lowWatermark, std::size_t highWatermark, xref:BloombergLP/bslma/Allocator.adoc[bslma::Allocator]* basicAllocator = 0); ---- [.small]#xref:BloombergLP/bdlcc/Cache/2constructor-0ac.adoc[_» more..._]# Create an empty cache with custom hash and equality functors. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:BloombergLP/bdlcc/Cache/2constructor-01.adoc[Cache]( xref:BloombergLP/bdlcc/CacheEvictionPolicy/Enum.adoc[CacheEvictionPolicy::Enum] evictionPolicy, std::size_t lowWatermark, std::size_t highWatermark, HASH const& hashFunction, EQUAL const& equalFunction, xref:BloombergLP/bslma/Allocator.adoc[bslma::Allocator]* basicAllocator = 0); ---- [.small]#xref:BloombergLP/bdlcc/Cache/2constructor-01.adoc[_» more..._]# == Parameters [cols="1,4"] |=== | Name| Description | *basicAllocator* | allocator used to supply memory | *evictionPolicy* | policy used to select items for eviction | *lowWatermark* | size at which eviction stops | *highWatermark* | size at which eviction starts after an insert | *hashFunction* | hash functor applied to keys | *equalFunction* | equality functor applied to keys |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#