class documentation
class ExecutionStore(object): (source)
Constructors: ExecutionStore.create(store_name, dataset_id)
, ExecutionStore(store_name, store_service)
Execution store.
Parameters | |
store | the name of the store |
store | an
fiftyone.operators.store.service.ExecutionStoreService |
Static Method | create |
Undocumented |
Method | __init__ |
Undocumented |
Method | clear |
Clears all the data in the store. |
Method | delete |
Deletes a key from the store. |
Method | get |
Retrieves a value from the store by its key. |
Method | get |
Retrieves the metadata for the given key. |
Method | has |
Checks if the store has a specific key. |
Method | list |
Lists all keys in the store. |
Method | list |
Lists all stores in the execution store. |
Method | set |
Sets a value in the store with an optional TTL. |
Method | update |
Updates the TTL for a specific key. |
Instance Variable | store |
Undocumented |
Instance Variable | _store |
Undocumented |
@staticmethod
def create(store_name:
def create(store_name:
str
, dataset_id: ObjectId | None
= None) -> ExecutionStore
:
(source)
¶
Undocumented