| 912 | |
| 913 | template <typename AllocatorT> |
| 914 | std::unique_ptr<ObjectCache<AllocatorT>> ObjectCache<AllocatorT>::create( |
| 915 | Config config) { |
| 916 | auto obj = |
| 917 | std::make_unique<ObjectCache>(InternalConstructor(), std::move(config)); |
| 918 | obj->init(); |
| 919 | return obj; |
| 920 | } |
| 921 | |
| 922 | template <typename AllocatorT> |
| 923 | StorageMedium ObjectCache<AllocatorT>::existFast(folly::StringPiece key) { |
nothing calls this directly
no test coverage detected