| 1144 | |
| 1145 | template <typename AllocatorT> |
| 1146 | bool ObjectCache<AllocatorT>::remove(folly::StringPiece key) { |
| 1147 | removes_.inc(); |
| 1148 | return this->l1Cache_->remove(key) == AllocatorT::RemoveRes::kSuccess; |
| 1149 | } |
| 1150 | |
| 1151 | template <typename AllocatorT> |
| 1152 | bool ObjectCache<AllocatorT>::isKeyValid(Key key) const { |