featurebyte.OnlineStore.create¶
create(
name: str,
details: Union[RedisOnlineStoreDetails, MySQLOnlineStoreDetails]
) -> OnlineStoreDescription¶
Creates and saves a Online Store object to enable FeatureByte to serve online features. To create an online store, you need to specify the connection details and credentials to use.
Only one online store can be created for a specific configuration details.
Parameters¶
- name: str
Name of the online store. - details: Union[RedisOnlineStoreDetails, MySQLOnlineStoreDetails]
Configuration details to use for the online store.
Returns¶
- OnlineStore