/////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2008-2012 Artyom Beilis (Tonkikh) // // See accompanying file COPYING.TXT file for licensing details. // /////////////////////////////////////////////////////////////////////////////// #ifndef THREAD_CHACHE_H #define THREAD_CHACHE_H #include "base_cache.h" #include #include namespace cppcms { namespace impl { booster::intrusive_ptr CPPCMS_API thread_cache_factory(unsigned items); #ifndef CPPCMS_WIN32 booster::intrusive_ptr CPPCMS_API process_cache_factory(size_t memory,unsigned items); #endif } // impl } // cppcms #endif