WO2017156683A1 - 基于链表的应用缓存管理方法及装置 - Google Patents
基于链表的应用缓存管理方法及装置 Download PDFInfo
- Publication number
- WO2017156683A1 WO2017156683A1 PCT/CN2016/076296 CN2016076296W WO2017156683A1 WO 2017156683 A1 WO2017156683 A1 WO 2017156683A1 CN 2016076296 W CN2016076296 W CN 2016076296W WO 2017156683 A1 WO2017156683 A1 WO 2017156683A1
- Authority
- WO
- WIPO (PCT)
- Prior art keywords
- linked list
- node
- memory
- cache management
- based application
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Ceased
Links
Classifications
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F12/00—Accessing, addressing or allocating within memory systems or architectures
- G06F12/02—Addressing or allocation; Relocation
- G06F12/08—Addressing or allocation; Relocation in hierarchically structured memory systems, e.g. virtual memory systems
- G06F12/0802—Addressing of a memory level in which the access to the desired data or data block requires associative addressing means, e.g. caches
- G06F12/0866—Addressing of a memory level in which the access to the desired data or data block requires associative addressing means, e.g. caches for peripheral storage systems, e.g. disk cache
- G06F12/0871—Allocation or management of cache space
Definitions
- the present invention relates to the field of storage technologies, and in particular, to a linked list based application cache management method and apparatus.
- a cache is used to realize storage of various data to achieve high-speed data access.
- the iOS platform adopting NSCache (NSCache is a convenient class for caching some object classes introduced by iOS) memory caching mechanism does not strictly limit the memory size occupied by cache data.
- the iOS platform can only delete the cached data that is finally stored if the total memory of the currently stored cached data exceeds the memory limit after storing the new cached data. In this new storage data storage process, the total capacity of the cached data may exceed the system's memory limit, resulting in low storage speed and efficiency of the cached data.
- the invention provides a linked list based application cache management method and device, which aims to solve the iOS platform adopting NSCache in a new cache data storage process, because the total capacity of the cached data may exceed the system memory limit The technical problem of cache data storage speed and low efficiency.
- the present invention provides a linked list based application cache management method, and the linked list based application cache management method includes the following steps:
- the linked list-based application cache management method includes:
- the linked list node is added to the linked list when the second memory is less than or equal to the maximum memory.
- the linked list based application cache management method further includes:
- the method based on the linked list application cache management further includes:
- the node corresponding to the cached data traversed is set as the head node of the linked list.
- the data field of the linked list node includes a survival time of the linked list node, and after the step of adding the linked list node to the linked list when the first memory is less than or equal to the maximum memory
- the linked list based application cache management method further includes:
- the linked list node is deleted when the linked list node currently reaches the survival time.
- the present invention further provides a linked list based application cache management apparatus, where the linked list based application cache management apparatus includes:
- a module is configured to: when receiving the cached data of the application, create a linked list node based on the received cached data, and obtain a memory size of the received cached data,
- a first obtaining module configured to acquire a maximum memory of the linked list and a current occupied memory size of the linked list
- a first calculating module configured to add the received memory size of the cached data to a currently occupied memory size of the linked list to obtain a first memory
- a first adding module configured to add the linked list node to the linked list when the first memory is less than or equal to the maximum memory.
- the linked list based application cache management device further comprises:
- a second obtaining module configured to acquire a time interval between a last access time and a current time of each node in the linked list when the first memory is greater than the maximum memory
- a first deleting module configured to delete a node with the largest time interval in the linked list
- a second calculating module configured to add the received memory size of the cached data to a current memory size of the linked list after the node is deleted to obtain a second memory
- a second adding module configured to add the linked list node to the linked list when the second memory is less than or equal to the maximum memory.
- the linked list based application cache management device further comprises:
- a third obtaining module configured to acquire, after receiving an access request for the cached data, identifier information of the cached data corresponding to the access request;
- a traversing module configured to traverse the linked list based on the identification information to access cache data corresponding to the access request.
- the linked list based application cache management device further comprises:
- a setting module configured to set a node corresponding to the cached data traversed to a head node of the linked list.
- the data field of the linked list node includes a survival time of the linked list node
- the linked list based application cache management device further includes:
- a determining module configured to determine, according to a creation time of the linked list node, whether the linked list node currently reaches the survival time
- a second deleting module configured to delete the linked list node when the linked list node currently reaches the surviving time.
- the invention creates a linked list node based on the received cached data when receiving the cached data of the application, and acquires the received memory size of the cached data; and then acquires the maximum memory of the linked list and the current of the linked list.
- the occupied memory size; then the received memory size of the cached data is added to the currently occupied memory size of the linked list to obtain a first memory; and finally, when the first memory is less than or equal to the maximum memory, Adding the linked list node to the linked list, adding the received cache data to the linked list when the first memory is less than or equal to the maximum memory, avoiding cache in the linked list during the new cache data storage process
- the data exceeds the maximum memory of the linked list, which improves the storage speed and efficiency of the cached data.
- FIG. 1 is a schematic flowchart diagram of a first embodiment of a method for managing application cache based on a linked list according to the present invention
- FIG. 2 is a schematic flowchart of a second embodiment of a method for managing application cache based on a linked list according to the present invention
- FIG. 3 is a schematic flowchart of a third embodiment of a method for managing application cache based on a linked list according to the present invention.
- FIG. 4 is a schematic flowchart of a fourth embodiment of a method for managing application cache based on a linked list according to the present invention.
- FIG. 5 is a schematic diagram of functional modules of a first embodiment of a linked list based application cache management apparatus according to the present invention
- FIG. 6 is a schematic diagram of functional modules of a second embodiment of a linked list based application cache management apparatus according to the present invention.
- FIG. 7 is a schematic diagram of functional modules of a third embodiment of a linked list based application cache management apparatus according to the present invention.
- FIG. 8 is a schematic diagram of functional modules of a fourth embodiment of a linked list based application cache management apparatus according to the present invention.
- FIG. 1 is a schematic flowchart diagram of a first embodiment of a method for managing application cache based on a linked list.
- the linked list based application cache management method includes:
- Step S110 when receiving the cached data of the application, creating a linked list node based on the received cached data, and acquiring a memory size of the received cached data;
- the linked list may be a doubly linked list or a single linked list.
- Creating a linked list node refers to storing the cached data in a data field of the newly created linked list node, wherein the direct successor of the newly created linked list node is the head node of the current linked list.
- the memory size of the received cached data is obtained, for example, the memory of the received cached data is 50M or the like.
- the application cache management method based on the linked list in this embodiment can be applied to an iOS platform, such as an iOS platform for developing various applications of the mobile terminal.
- Step S120 Obtain a maximum memory of the linked list and a current occupied memory size of the linked list.
- the maximum memory of the linked list refers to the maximum capacity of the linked list set when the linked list is established, and the currently occupied memory size of the linked list refers to the memory size of all cached data currently stored in the linked list.
- Step S130 adding the received memory size of the cached data to the currently occupied memory size of the linked list to obtain a first memory
- Step S140 adding the linked list node to the linked list when the first memory is less than or equal to the maximum memory.
- the linked list is The node serves as the head node of the linked list.
- the linked list node when the cache data of the application is received, the linked list node is created based on the received cache data, and the received memory size of the cached data is acquired; then the maximum memory of the linked list is obtained and the The currently occupied memory size of the linked list; then the received memory size of the cached data is added to the currently occupied memory size of the linked list to obtain a first memory; finally, the first memory is less than or equal to the maximum
- the linked list node is added to the linked list, so that the received cache data is added to the linked list when the first memory is less than or equal to the maximum memory, thereby avoiding the new cache data storage process.
- the cached data in the linked list exceeds the maximum memory of the linked list, which improves the storage speed and efficiency of the cached data.
- the linked list-based application cache management method further includes:
- Step S150 When the first memory is greater than the maximum memory, obtain a time interval between a last access time and a current time of each node in the linked list.
- the last access time of each node in the linked list refers to the access time of the last access of each node in the linked list.
- Step S160 deleting a node with the largest time interval in the linked list
- Deleting the node with the largest time interval in the linked list refers to deleting the last accessed access time in the linked list from the current time, that is, deleting the node in the linked list that has not been accessed for the longest time.
- Step S170 adding the received memory size of the cached data to the currently occupied memory size of the linked list after the node is deleted to obtain a second memory;
- Step S180 adding the linked list node to the linked list when the second memory is less than or equal to the maximum memory.
- the linked list node is added to the linked list.
- the linked list node is used as the head node of the linked list.
- the time interval between the last access time and the current time of each node in the linked list is obtained; and then the node with the largest time interval in the linked list is deleted.
- the received memory size of the cached data is added to the currently occupied memory size of the linked list after the node is deleted to obtain a second memory; and finally, when the second memory is less than or equal to the maximum memory Adding the linked list node to the linked list, when the first memory is greater than the maximum memory, first deleting the node with the largest time interval in the linked list to ensure that the second memory is less than or equal to the maximum memory.
- the linked list node is added to the linked list, thereby further avoiding that the cached data in the linked list exceeds the maximum memory of the linked list in the new cache data storage process, thereby improving the storage speed and efficiency of the cached data.
- the linked list based application cache management method further includes:
- Step S190 Acquire, after receiving an access request for the cached data, identifier information of the cached data corresponding to the access request;
- an access request for the cached data is generated, and the access request carries the identification information of the cached data, and the access to the cached data is received.
- the access request is parsed to obtain the identification information of the cached data corresponding to the access request.
- Step S200 traversing the linked list based on the identifier information to access cache data corresponding to the access request.
- the linked list is traversed based on the identifier information to access the cached data corresponding to the access request.
- the iOS platform adopting NSCache caches data access, it needs to match the identification information with the key of the cached data.
- each cached data key is similar, that is, when there are a large number of similar keys, the system consumes a large amount of time.
- the matching of the key results in a lower read performance of the cached data, that is, the read speed and efficiency of the cached data are lower.
- the linked list-based application cache management method further includes: setting a node corresponding to the traversed cache data as a head node of the linked list.
- the identifier information of the cached data corresponding to the access request is obtained; and then the linked list is traversed based on the identifier information to access the cached data corresponding to the access request, according to the The identification information of the cached data traverses the linked list to implement access of the cached data, thereby improving the speed and efficiency of reading the cached data.
- a fourth embodiment of the linked list based application cache management method of the present invention is proposed based on the first embodiment.
- the data field of the linked list node includes the survival time of the linked list node.
- the linked list-based application cache management method further includes:
- Step S210 determining, according to the creation time of the linked list node, whether the linked list node currently reaches the survival time
- the data field of the created linked list node includes the survival time of the linked list node, and is started after the linked list node is added to the linked list to determine whether the linked list node is currently reached. The survival time.
- Step S220 deleting the linked list node when the linked list node currently reaches the survival time.
- the link table node is deleted according to the survival time of the linked list node, that is, the timing storage of the cache data is realized, and the access efficiency of the cache data is further improved.
- FIG. 5 is a schematic diagram of functional modules of a first embodiment of a linked list based application cache management apparatus according to the present invention.
- the linked list based application cache management device includes:
- the creating module 110 is configured to: when receiving the cached data of the application, create a linked list node based on the received cached data, and obtain a memory size of the received cached data,
- the linked list may be a doubly linked list or a single linked list.
- Creating a linked list node refers to storing the cached data in a data field of the newly created linked list node, wherein the direct successor of the newly created linked list node is the head node of the current linked list.
- the memory size of the received cached data is obtained, for example, the memory of the received cached data is 50M or the like.
- the application cache management method based on the linked list in this embodiment can be applied to an iOS platform, such as an iOS platform for developing various applications of the mobile terminal.
- the first obtaining module 120 is configured to acquire a maximum memory of the linked list and a current occupied memory size of the linked list.
- the maximum memory of the linked list refers to the maximum capacity of the linked list set when the linked list is established, and the currently occupied memory size of the linked list refers to the memory size of all cached data currently stored in the linked list.
- the first calculating module 130 is configured to add the received memory size of the cached data to a currently occupied memory size of the linked list to obtain a first memory;
- the first adding module 140 is configured to add the linked list node to the linked list when the first memory is less than or equal to the maximum memory.
- the first adding module 140 adds the linked list node to the linked list.
- the linked list node is used as the head node of the linked list.
- the creating module 110 creates a linked list node based on the received cached data, and acquires the received memory size of the cached data; the first obtaining module 120 then acquires the The maximum memory of the linked list and the current occupied memory size of the linked list; the first calculating module 130 then adding the received memory size of the cached data to the currently occupied memory size of the linked list to obtain a first memory; Finally, when the first memory is less than or equal to the maximum memory, the first adding module 140 adds the linked list node to the linked list, so that when the first memory is less than or equal to the maximum memory, it is received.
- the cached data is added to the linked list, which avoids the cached data in the linked list exceeding the maximum memory of the linked list in the new cached data storage process, and improves the storage speed and efficiency of the cached data.
- the linked list based application cache management apparatus further includes:
- the second obtaining module 150 is configured to acquire, when the first memory is greater than the maximum memory, a time interval between a last access time and a current time of each node in the linked list;
- the last access time of each node in the linked list refers to the access time of the last access of each node in the linked list.
- a first deleting module 160 configured to delete a node with the largest time interval in the linked list
- the first deletion module 160 deletes the node with the largest time interval in the linked list, and refers to the node whose last accessed access time in the linked list is the longest from the current time, that is, the node that has not been accessed for the longest time in the deleted linked list.
- the second calculating module 170 is configured to add the received memory size of the cached data to the currently occupied memory size of the linked list after the node is deleted to obtain a second memory;
- the second adding module 180 is configured to add the linked list node to the linked list when the second memory is less than or equal to the maximum memory.
- the second adding module 180 adds the linked list node to the linked list.
- the linked list node is used as the head node of the linked list.
- the second obtaining module 150 acquires a time interval between the last access time and the current time of each node in the linked list; and then the first deleting module 160 Deleting the node with the largest time interval in the linked list; then the second computing module 170 adds the received memory size of the cached data to the currently occupied memory size of the linked list after the node is deleted to obtain the second memory; Finally, when the second memory is less than or equal to the maximum memory, the second adding module 180 adds the linked list node to the linked list, so that when the first memory is greater than the maximum memory, the linked list is first deleted.
- the node with the largest interval is used to ensure that the second memory is less than or equal to the maximum memory, and finally the linked list node is added to the linked list, thereby further avoiding the cached data in the linked list exceeding the linked list in the new cached data storage process.
- the maximum memory increases the storage speed and efficiency of cached data.
- the linked list based application cache management apparatus further includes:
- the third obtaining module 190 is configured to acquire, after receiving the access request of the cached data, the identifier information of the cached data corresponding to the access request;
- the cached data in the linked list needs to be called, an access request for the cached data is generated, and the access request carries the identification information of the cached data, and the access to the cached data is received.
- the third obtaining module 190 parses the access request to obtain the identification information of the cached data corresponding to the access request.
- the traversing module 200 is configured to traverse the linked list based on the identification information to access cache data corresponding to the access request.
- the linked list is traversed based on the identifier information to access the cached data corresponding to the access request.
- the iOS platform adopting NSCache caches data access, it needs to match the identification information with the key of the cached data.
- each cached data key is similar, that is, when there are a large number of similar keys, the system consumes a large amount of time.
- the matching of the key results in a lower read performance of the cached data, that is, the read speed and efficiency of the cached data are lower.
- the linked list-based application cache management apparatus further includes: a setting module, configured to set a node corresponding to the cached data traversed to a head node of the linked list.
- a node corresponding to the cached data traversed by the setting module as a head node of the linked list, so that when the new cached data is subsequently received, if the first memory is larger than the maximum memory, deleting the a tail node of the linked list; the memory size of the cached data received is added to the current memory size of the linked list after the node is deleted to obtain a second memory; and the second memory is less than or equal to the maximum In the case of memory, the linked list node is added to the linked list.
- the process of storing the cache data when the first memory is larger than the maximum memory is reduced, and the storage speed and efficiency of the cache data are improved.
- the third obtaining module 190 acquires the identification information of the cached data corresponding to the access request when receiving the access request of the cached data; and then the traversing module 200 traverses the linked list based on the identifier information to access the access The corresponding cache data is requested, and the cache data access is realized by traversing the linked list according to the identification information of the cache data, thereby improving the speed and efficiency of the cache data reading.
- a fourth embodiment of the linked list-based application cache management apparatus of the present invention is proposed based on the first embodiment.
- the data field of the linked list node includes the survival time of the linked list node.
- the linked list based application cache management device further includes:
- the determining module 210 is configured to determine, according to the creation time of the linked list node, whether the linked list node currently reaches the survival time;
- the data field of the created linked list node includes the survival time of the linked list node, and is started after the linked list node is added to the linked list to determine whether the linked list node is currently reached. The survival time.
- the second deleting module 220 is configured to delete the linked list node when the linked list node currently reaches the lifetime.
- the determining module 210 determines, according to the creation time of the linked list node, whether the linked list node currently reaches the survival time, and then when the linked list node currently reaches the surviving time, the second deleting module 220 Deleting the linked list node realizes deleting the linked list node according to the survival time of the linked list node, that is, the timing storage of the cached data is realized, and the access efficiency of the cached data is further improved.
- the foregoing embodiment method can be implemented by means of software plus a necessary general hardware platform, and of course, can also be through hardware, but in many cases, the former is better.
- Implementation Based on such understanding, the technical solution of the present invention, which is essential or contributes to the prior art, may be embodied in the form of a software product stored in a storage medium (such as ROM/RAM, disk,
- the optical disc includes a number of instructions for causing a terminal device (which may be a cell phone, a computer, a server, an air conditioner, or a network device, etc.) to perform the methods described in various embodiments of the present invention.
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Memory System Of A Hierarchy Structure (AREA)
Abstract
Description
Claims (16)
- 一种基于链表的应用缓存管理方法,其特征在于,所述基于链表的应用缓存管理方法包括以下步骤:在接收到应用的缓存数据时,基于接收到的缓存数据创建链表结点,并获取接收到的所述缓存数据的内存大小;获取所述链表的最大内存及所述链表的当前占用的内存大小;将接收到的所述缓存数据的内存大小与所述链表的当前占用的内存大小相加以获得第一内存;在所述第一内存小于或等于所述最大内存时,将所述链表结点添加至所述链表。
- 如权利要求1所述的基于链表的应用缓存管理方法,其特征在于,将接收到的所述缓存数据的内存大小与所述链表的当前占用的内存大小相加以获得第一内存的步骤之后,所述基于链表的应用缓存管理方法包括:在所述第一内存大于所述最大内存时,获取所述链表中各个结点的上一次访问时间与当前时间的时间间隔;删除所述链表中时间间隔最大的结点;将接收到的所述缓存数据的内存大小与结点删除后所述链表的当前占用的内存大小相加以获得第二内存;在所述第二内存小于或等于所述最大内存时,将所述链表结点添加至所述链表。
- 如权利要求1所述的基于链表的应用缓存管理方法,其特征在于,在所述第一内存小于或等于所述最大内存时,将所述链表结点添加至所述链表的步骤之后,所述基于链表的应用缓存管理方法还包括:在接收到缓存数据的访问请求时,获取所述访问请求对应的缓存数据的标识信息;基于所述标识信息遍历所述链表以访问所述访问请求对应的缓存数据。
- 如权利要求3所述的基于链表的应用缓存管理方法,其特征在于,基于所述标识信息遍历所述链表以访问所述访问请求对应的缓存数据的步骤之后,所述基于链表的应用缓存管理方法还包括:将遍历到的缓存数据对应的结点设置为所述链表的头结点。
- 如权利要求1所述的基于链表的应用缓存管理方法,其特征在于,所述链表结点的数据域包含所述链表结点的存活时间,在所述第一内存小于或等于所述最大内存时,将所述链表结点添加至所述链表的步骤之后,所述基于链表的应用缓存管理方法还包括:基于所述链表结点的创建时间确定所述链表结点当前是否达到所述存活时间;在所述链表结点当前达到所述存活时间时,删除所述链表结点。
- 如权利要求2所述的基于链表的应用缓存管理方法,其特征在于,所述链表结点的数据域包含所述链表结点的存活时间,在所述第一内存小于或等于所述最大内存时,将所述链表结点添加至所述链表的步骤之后,所述基于链表的应用缓存管理方法还包括:基于所述链表结点的创建时间确定所述链表结点当前是否达到所述存活时间;在所述链表结点当前达到所述存活时间时,删除所述链表结点。
- 如权利要求3所述的基于链表的应用缓存管理方法,其特征在于,所述链表结点的数据域包含所述链表结点的存活时间,在所述第一内存小于或等于所述最大内存时,将所述链表结点添加至所述链表的步骤之后,所述基于链表的应用缓存管理方法还包括:基于所述链表结点的创建时间确定所述链表结点当前是否达到所述存活时间;在所述链表结点当前达到所述存活时间时,删除所述链表结点。
- 如权利要求4所述的基于链表的应用缓存管理方法,其特征在于,所述链表结点的数据域包含所述链表结点的存活时间,在所述第一内存小于或等于所述最大内存时,将所述链表结点添加至所述链表的步骤之后,所述基于链表的应用缓存管理方法还包括:基于所述链表结点的创建时间确定所述链表结点当前是否达到所述存活时间;在所述链表结点当前达到所述存活时间时,删除所述链表结点。
- 一种基于链表的应用缓存管理装置,其特征在于,所述基于链表的应用缓存管理装置包括:创建模块,用于在接收到应用的缓存数据时,基于接收到的缓存数据创建链表结点,并获取接收到的所述缓存数据的内存大小,第一获取模块,用于获取所述链表的最大内存及所述链表的当前占用的内存大小;第一计算模块,用于将接收到的所述缓存数据的内存大小与所述链表的当前占用的内存大小相加以获得第一内存;第一添加模块,用于在所述第一内存小于或等于所述最大内存时,将所述链表结点添加至所述链表。
- 如权利要求9所述的基于链表的应用缓存管理装置,其特征在于,所述基于链表的应用缓存管理装置还包括:第二获取模块,用于在所述第一内存大于所述最大内存时,获取所述链表中各个结点的上一次访问时间与当前时间的时间间隔;第一删除模块,用于删除所述链表中时间间隔最大的结点;第二计算模块,用于将接收到的所述缓存数据的内存大小与结点删除后所述链表的当前占用的内存大小相加以获得第二内存;第二添加模块,用于在所述第二内存小于或等于所述最大内存时,将所述链表结点添加至所述链表。
- 如权利要求9所述的基于链表的应用缓存管理装置,其特征在于,所述基于链表的应用缓存管理装置还包括:第三获取模块,用于在接收到缓存数据的访问请求时,获取所述访问请求对应的缓存数据的标识信息;遍历模块,用于基于所述标识信息遍历所述链表以访问所述访问请求对应的缓存数据。
- 如权利要求11所述的基于链表的应用缓存管理装置,其特征在于,所述基于链表的应用缓存管理装置还包括:设置模块,用于将遍历到的缓存数据对应的结点设置为所述链表的头结点。
- 如权利要求9所述的基于链表的应用缓存管理装置,其特征在于,所述链表结点的数据域包含所述链表结点的存活时间,所述基于链表的应用缓存管理装置还包括:确定模块,用于基于所述链表结点的创建时间确定所述链表结点当前是否达到所述存活时间;第二删除模块,用于在所述链表结点当前达到所述存活时间时,删除所述链表结点。
- 如权利要求10所述的基于链表的应用缓存管理装置,其特征在于,所述链表结点的数据域包含所述链表结点的存活时间,所述基于链表的应用缓存管理装置还包括:确定模块,用于基于所述链表结点的创建时间确定所述链表结点当前是否达到所述存活时间;第二删除模块,用于在所述链表结点当前达到所述存活时间时,删除所述链表结点。
- 如权利要求11所述的基于链表的应用缓存管理装置,其特征在于,所述链表结点的数据域包含所述链表结点的存活时间,所述基于链表的应用缓存管理装置还包括:确定模块,用于基于所述链表结点的创建时间确定所述链表结点当前是否达到所述存活时间;第二删除模块,用于在所述链表结点当前达到所述存活时间时,删除所述链表结点。
- 如权利要求12所述的基于链表的应用缓存管理装置,其特征在于,所述链表结点的数据域包含所述链表结点的存活时间,所述基于链表的应用缓存管理装置还包括:确定模块,用于基于所述链表结点的创建时间确定所述链表结点当前是否达到所述存活时间;第二删除模块,用于在所述链表结点当前达到所述存活时间时,删除所述链表结点。
Priority Applications (3)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| AU2016277745A AU2016277745B2 (en) | 2016-03-14 | 2016-03-14 | Linked-list-based method and device for application caching management |
| PCT/CN2016/076296 WO2017156683A1 (zh) | 2016-03-14 | 2016-03-14 | 基于链表的应用缓存管理方法及装置 |
| US15/414,628 US10241927B2 (en) | 2016-03-14 | 2017-01-25 | Linked-list-based method and device for application caching management |
Applications Claiming Priority (1)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| PCT/CN2016/076296 WO2017156683A1 (zh) | 2016-03-14 | 2016-03-14 | 基于链表的应用缓存管理方法及装置 |
Related Child Applications (1)
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| US15/414,628 Continuation US10241927B2 (en) | 2016-03-14 | 2017-01-25 | Linked-list-based method and device for application caching management |
Publications (1)
| Publication Number | Publication Date |
|---|---|
| WO2017156683A1 true WO2017156683A1 (zh) | 2017-09-21 |
Family
ID=59851471
Family Applications (1)
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| PCT/CN2016/076296 Ceased WO2017156683A1 (zh) | 2016-03-14 | 2016-03-14 | 基于链表的应用缓存管理方法及装置 |
Country Status (2)
| Country | Link |
|---|---|
| AU (1) | AU2016277745B2 (zh) |
| WO (1) | WO2017156683A1 (zh) |
Cited By (2)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN109144892A (zh) * | 2018-08-27 | 2019-01-04 | 南京国电南自轨道交通工程有限公司 | 一种管理内存中高频变化数据的缓冲链表数据结构设计方法 |
| US10241927B2 (en) * | 2016-03-14 | 2019-03-26 | Shenzhen Skyworth-Rgb Electronic Co., Ltd. | Linked-list-based method and device for application caching management |
Citations (4)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US7536529B1 (en) * | 2005-06-10 | 2009-05-19 | American Megatrends, Inc. | Method, system, apparatus, and computer-readable medium for provisioning space in a data storage system |
| CN103984639A (zh) * | 2014-04-29 | 2014-08-13 | 宁波三星电气股份有限公司 | 一种动态内存分配方法 |
| CN104850507A (zh) * | 2014-02-18 | 2015-08-19 | 腾讯科技(深圳)有限公司 | 一种数据缓存方法和数据缓存装置 |
| CN105786723A (zh) * | 2016-03-14 | 2016-07-20 | 深圳创维-Rgb电子有限公司 | 基于链表的应用缓存管理方法及装置 |
-
2016
- 2016-03-14 WO PCT/CN2016/076296 patent/WO2017156683A1/zh not_active Ceased
- 2016-03-14 AU AU2016277745A patent/AU2016277745B2/en not_active Ceased
Patent Citations (4)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US7536529B1 (en) * | 2005-06-10 | 2009-05-19 | American Megatrends, Inc. | Method, system, apparatus, and computer-readable medium for provisioning space in a data storage system |
| CN104850507A (zh) * | 2014-02-18 | 2015-08-19 | 腾讯科技(深圳)有限公司 | 一种数据缓存方法和数据缓存装置 |
| CN103984639A (zh) * | 2014-04-29 | 2014-08-13 | 宁波三星电气股份有限公司 | 一种动态内存分配方法 |
| CN105786723A (zh) * | 2016-03-14 | 2016-07-20 | 深圳创维-Rgb电子有限公司 | 基于链表的应用缓存管理方法及装置 |
Cited By (2)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US10241927B2 (en) * | 2016-03-14 | 2019-03-26 | Shenzhen Skyworth-Rgb Electronic Co., Ltd. | Linked-list-based method and device for application caching management |
| CN109144892A (zh) * | 2018-08-27 | 2019-01-04 | 南京国电南自轨道交通工程有限公司 | 一种管理内存中高频变化数据的缓冲链表数据结构设计方法 |
Also Published As
| Publication number | Publication date |
|---|---|
| AU2016277745B2 (en) | 2021-02-11 |
| AU2016277745A1 (en) | 2017-09-28 |
Similar Documents
| Publication | Publication Date | Title |
|---|---|---|
| WO2019037396A1 (zh) | 账户清结算方法、装置、设备及存储介质 | |
| WO2013131444A1 (zh) | 分享内容的方法、终端、服务器及系统、计算机存储介质 | |
| WO2020224247A1 (zh) | 基于区块链的数据溯源方法、装置、设备及可读存储介质 | |
| WO2013017004A1 (zh) | 文件的扫描方法、系统、客户端及服务器 | |
| WO2017041538A1 (zh) | 终端用户界面的受控显示方法及装置 | |
| WO2018126888A1 (zh) | 电视功能的快捷启动设置方法及装置 | |
| WO2015196960A1 (en) | Method and system for checking security of url for mobile terminal | |
| WO2019196213A1 (zh) | 接口测试方法、装置、设备及计算机可读存储介质 | |
| WO2019051902A1 (zh) | 终端控制方法、空调器及计算机可读存储介质 | |
| WO2019161615A1 (zh) | 账单录入方法、系统、光学字符识别服务器和存储介质 | |
| WO2019169814A1 (zh) | 自动生成中文注释的方法、装置、设备及存储介质 | |
| WO2018023926A1 (zh) | 电视与移动终端的互动方法及系统 | |
| WO2015120774A1 (en) | Network access method and apparatus applied to mobile application | |
| WO2015144089A1 (en) | Application recommending method and apparatus | |
| WO2017071352A1 (zh) | 密码的推送方法、推送系统及终端设备 | |
| WO2018233301A1 (zh) | 产品推荐方法、装置、设备以及计算机可读存储介质 | |
| WO2018076811A1 (zh) | 数据分享方法、装置、存储介质及电子设备 | |
| WO2016058258A1 (zh) | 终端远程控制方法和系统 | |
| WO2017190451A1 (zh) | 图片推送方法和装置 | |
| WO2015169177A1 (en) | Web page display method and apparatus | |
| WO2012028079A1 (zh) | 一种移动终端备份数据的导入方法及装置 | |
| WO2019085301A1 (zh) | 座机未接来电的反馈方法、装置、设备及可读存储介质 | |
| WO2017166037A1 (zh) | 一种数据篡改的检测装置及方法 | |
| WO2016090991A1 (zh) | 流媒体数据的下载方法及装置 | |
| WO2018098879A1 (zh) | 数字水印加密方法及装置 |
Legal Events
| Date | Code | Title | Description |
|---|---|---|---|
| ENP | Entry into the national phase |
Ref document number: 2016277745 Country of ref document: AU Date of ref document: 20160314 Kind code of ref document: A |
|
| NENP | Non-entry into the national phase |
Ref country code: DE |
|
| 121 | Ep: the epo has been informed by wipo that ep was designated in this application |
Ref document number: 16893848 Country of ref document: EP Kind code of ref document: A1 |
|
| 122 | Ep: pct application non-entry in european phase |
Ref document number: 16893848 Country of ref document: EP Kind code of ref document: A1 |