Package org.apache.drill.exec.store.sys
Class CaseInsensitivePersistentStore<V>
java.lang.Object
org.apache.drill.exec.store.sys.CaseInsensitivePersistentStore<V>
- All Implemented Interfaces:
AutoCloseable,PersistentStore<V>,Store<V>
Wrapper around
PersistentStore to ensure all passed keys are
converted to lower case and stored this way. This will ensure
case-insensitivity during insert, update, deletion or search.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidclose()booleanChecks if lookup key is present in store.voidRemoves the value corresponding to the given key if exists, nothing happens otherwise.Returns the value for the given key if exists, null otherwise.getAll()Returns an iterator of entries.getMode()Returns storagemodeof this store.getRange(int skip, int take) Returns an iterator of desired number of entries offsetting by the skip value.voidStores the (key, value) tuple in the store.booleanputIfAbsent(String key, V value) Stores the (key, value) tuple in the store only if it does not exists.
-
Constructor Details
-
CaseInsensitivePersistentStore
-
-
Method Details
-
contains
Description copied from interface:PersistentStoreChecks if lookup key is present in store.- Specified by:
containsin interfacePersistentStore<V>- Parameters:
key- lookup key- Returns:
- true if store contains lookup key, false otherwise
-
get
Description copied from interface:PersistentStoreReturns the value for the given key if exists, null otherwise.- Specified by:
getin interfacePersistentStore<V>- Parameters:
key- lookup key
-
put
Description copied from interface:PersistentStoreStores the (key, value) tuple in the store. Lifetime of the tuple depends upon storemode.- Specified by:
putin interfacePersistentStore<V>- Parameters:
key- lookup keyvalue- value to store
-
getAll
Description copied from interface:PersistentStoreReturns an iterator of entries.- Specified by:
getAllin interfacePersistentStore<V>
-
getMode
Description copied from interface:StoreReturns storagemodeof this store. -
delete
Description copied from interface:StoreRemoves the value corresponding to the given key if exists, nothing happens otherwise. -
putIfAbsent
Description copied from interface:StoreStores the (key, value) tuple in the store only if it does not exists.- Specified by:
putIfAbsentin interfaceStore<V>- Parameters:
key- lookup keyvalue- value to store- Returns:
- true if put takes place, false otherwise.
-
getRange
Description copied from interface:StoreReturns an iterator of desired number of entries offsetting by the skip value. -
close
- Specified by:
closein interfaceAutoCloseable- Throws:
Exception
-