forked from artyom-beilis/cppcms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcache_storage.h
More file actions
23 lines (21 loc) · 883 Bytes
/
Copy pathcache_storage.h
File metadata and controls
23 lines (21 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
///////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2008-2012 Artyom Beilis (Tonkikh) <artyomtnk@yahoo.com>
//
// See accompanying file COPYING.TXT file for licensing details.
//
///////////////////////////////////////////////////////////////////////////////
#ifndef THREAD_CHACHE_H
#define THREAD_CHACHE_H
#include "base_cache.h"
#include <booster/intrusive_ptr.h>
#include <cppcms/defs.h>
namespace cppcms {
namespace impl {
booster::intrusive_ptr<base_cache> CPPCMS_API thread_cache_factory(unsigned items);
#ifndef CPPCMS_WIN32
booster::intrusive_ptr<base_cache> CPPCMS_API process_cache_factory(size_t memory,unsigned items);
#endif
} // impl
} // cppcms
#endif