Application and implementation of data cache mechanism for small programs

Application and implementation of data cache mechanism for small programs

Mini Program Data Cache Related Knowledge

Data cache: caches data so that when the applet is opened again after exiting, the last saved data can be read from the cache. The commonly used data cache APIs are shown in the following table:

insert image description here

Note : Stores the data at the specified key in the local cache. The original content corresponding to the key will be overwritten. The data will always be available unless the user actively deletes it or the system clears it due to storage space reasons. The maximum length of data stored in a single key is 1MB, and the upper limit for all data storage is 10MB.

parameter

For detailed parameters, please see
https://developers.weixin.qq.com/miniprogram/dev/api/storage/wx.setStorage.html

Save data cache

// Save data cache wx.setStorage({
  key: 'key', // The key specified in the local cache
  data: 'value', // content to be stored (supports object or string)
  success: res => {}, // callback function for successful interface call	
  fail: res => {} // callback function for interface call failure})

Get data cache

// Get data cache wx.getStorage({
  key: 'key', // The key specified in the local cache
  success: res => { // Callback function of successful interface call console.log(res.data)
  }, 
  fail: res => {} // callback function for interface call failure})

Example: Storing and retrieving in onLoad

// pages/test/test.js
Page({
  onLoad: function(options) {
    // Save data cache wx.setStorage({
      key: 'key', // The key specified in the local cache
      data: 'value', // content to be stored (supports object or string)
      success: res => {
        // Get data cache wx.getStorage({
          key: 'key', // The key specified in the local cache
          success: res => { // Callback function of successful interface call console.log(res.data)
          },
          fail: res => { } // callback function for interface call failure})
      }, // callback function for successful interface call fail: res => {} // callback function for failed interface call })
  }
})

This is the end of this article about the application and implementation of the mini-program data caching mechanism. For more relevant mini-program data caching content, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • WeChat Mini Program - Detailed Explanation of Data Caching
  • WeChat applet cache (local cache, asynchronous cache, synchronous cache) detailed explanation
  • How to clean up the local cache of the applet
  • WeChat applet data cache example detailed explanation
  • WeChat applet local cache data addition, deletion, modification and query example
  • Detailed explanation of writing and reading cache in WeChat applet
  • How to play cached audio files in WeChat applet in IOS
  • WeChat applet development data storage parameter transfer data cache
  • How to modify a single data in the local cache key in WeChat applet

<<:  Windows 2019 Activation Tutorial (Office2019)

>>:  Detailed explanation of the definition and usage of MySQL stored functions (custom functions)

Recommend

Detailed explanation of root directory settings in nginx.conf

There are always some problems when configuring n...

MySQL 8.0 DDL atomicity feature and implementation principle

1. Overview of DDL Atomicity Before 8.0, there wa...

JavaScript web form function communication full of practical information

1. Introduction Earlier we talked about the front...

About uniApp editor WeChat sliding problem

The uniapp applet will have a similar drop-down p...

How to configure path alias for react scaffolding

The react version when writing this article is 16...

Steps to deploy ingress-nginx on k8s

Table of contents Preface 1. Deployment and Confi...

Example of automatic import method of vue3.0 common components

1. Prerequisites We use the require.context metho...

Summary of all HTML interview questions

1. The role of doctype, the difference between st...

Nginx configuration location matching rules example explanation

The scope of nginx configuration instructions can...

Let's talk about the size and length limits of various objects in MySQL

Table of contents Identifier length limit Length ...

Using keras to judge SQL injection attacks (example explanation)

This article uses the deep learning framework ker...

How to use not in to optimize MySql

Recently, when using select query in a project, I...