-
Notifications
You must be signed in to change notification settings - Fork 319
Expand file tree
/
Copy pathCacheTraits.h
More file actions
65 lines (58 loc) · 2.01 KB
/
CacheTraits.h
File metadata and controls
65 lines (58 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include "cachelib/allocator/ChainedHashTable.h"
#include "cachelib/allocator/MM2Q.h"
#include "cachelib/allocator/MMLru.h"
#include "cachelib/allocator/MMTinyLFU.h"
#include "cachelib/common/Mutex.h"
namespace facebook {
namespace cachelib {
// The cache traits supported by CacheLib.
// Cache trait is a combination of MMType, AccessType and AccesTypeLock.
// MMType is the type of MM (memory management) container used by the cache,
// which controls a cache item's life time.
// AccessType is the type of access container, which controls how an item is
// accessed.
// AccessTypeLock is the lock type for the access container that supports
// multiple locking primitives
struct LruCacheTrait {
using MMType = MMLru;
using AccessType = ChainedHashTable;
using AccessTypeLocks = SharedMutexBuckets;
};
struct LruCacheWithSpinBucketsTrait {
using MMType = MMLru;
using AccessType = ChainedHashTable;
using AccessTypeLocks = SpinBuckets;
};
struct Lru2QCacheTrait {
using MMType = MM2Q;
using AccessType = ChainedHashTable;
using AccessTypeLocks = SharedMutexBuckets;
};
struct TinyLFUCacheTrait {
using MMType = MMTinyLFU;
using AccessType = ChainedHashTable;
using AccessTypeLocks = SharedMutexBuckets;
};
struct SieveCacheTrait {
using MMType = MMSieve;
using AccessType = ChainedHashTable;
using AccessTypeLocks = SharedMutexBuckets;
};
} // namespace cachelib
} // namespace facebook