The Local Storage actions available on the Kuika platform allow you to store user data in your application temporarily or permanently in the browser. This provides advantages such as fast access to data during user interactions, offline use, and cross-session data persistence.
Purpose
Local Storage actions facilitate the storage and reuse of data obtained from users. They are particularly useful in scenarios such as form filling, saving user preferences, or providing recommendations based on past actions.
Advantages
No data loss even if the browser is closed (Local Storage).
Improves user experience and increases application performance.
Local Storage Actions Available on the Kuika Platform
1. Data Writing Actions
Write To Session Storage: Writes data to the browser's Session Storage area. Valid only for the duration of the session. Deleted when the browser is closed.
Write To Local Storage: Writes data to the browser's Local Storage area permanently. Data is retained even if the browser is closed.
2. Data Reading Actions
Read From Session Storage: Reads data from the Session Storage area. Provides access to data that is valid for the duration of the session.
Read From Local Storage: Reads permanent data from the Local Storage area. Data can be accessed even if the browser is restarted.
3. Data Deletion Actions
Delete From Session Storage: Deletes specific data from the Session Storage area. Data can be manually removed even before the browser is closed.
Delete From Local Storage: Deletes specific data from the Local Storage area. Permanently stored data is deleted by the user.
By using these actions, you can make data management processes on the Kuika platform flexible and controlled, and offer users a faster and more personalized experience.