CN113722629A - Intelligent page caching method and system and readable storage medium - Google Patents

Intelligent page caching method and system and readable storage medium Download PDF

Info

Publication number
CN113722629A
CN113722629A CN202111026887.8A CN202111026887A CN113722629A CN 113722629 A CN113722629 A CN 113722629A CN 202111026887 A CN202111026887 A CN 202111026887A CN 113722629 A CN113722629 A CN 113722629A
Authority
CN
China
Prior art keywords
page
information
caching
instance
intelligent
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.)
Pending
Application number
CN202111026887.8A
Other languages
Chinese (zh)
Inventor
张元科
孙琳
胡道森
谭坤鹏
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Zhongyuan Bank Co ltd
Original Assignee
Zhongyuan Bank Co ltd
Priority date (The priority date 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 date listed.)
Filing date
Publication date
Application filed by Zhongyuan Bank Co ltd filed Critical Zhongyuan Bank Co ltd
Priority to CN202111026887.8A priority Critical patent/CN113722629A/en
Publication of CN113722629A publication Critical patent/CN113722629A/en
Pending legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/90Details of database functions independent of the retrieved data types
    • G06F16/95Retrieval from the web
    • G06F16/957Browsing optimisation, e.g. caching or content distillation
    • G06F16/9574Browsing optimisation, e.g. caching or content distillation of access to content, e.g. by caching

Abstract

The invention provides an intelligent page caching method, an intelligent page caching system and a readable storage medium. The intelligent page caching method comprises the following steps: creating a front-end page supporting page caching; monitoring and recording routing page instance information; when the fact that the page A needs to be jumped is monitored, whether the information of the page A exists or not is searched, and if the information of the page A does not exist, a page A instance is newly built and jumped; if the information of the page A exists, the information from the page A to the currently displayed page is destroyed, and the original page A is jumped to. According to the method, the mobile front-end page is created during the creation and cached during the caching, so that the problem of caching of key pages influencing user experience and performance is solved, the user experience can be improved, the occupation of a system memory is reduced, and the program running efficiency is improved.

Description

Intelligent page caching method and system and readable storage medium
Technical Field
The invention relates to the technical field of mobile internet, in particular to an intelligent page caching method, an intelligent page caching system and a readable storage medium.
Background
At present, front-end page development generally uses a third-party framework, Vue is a set of progressive framework for constructing a front-end page, and a suitable front-end page can be conveniently developed, and vueRouter (front-end routing system) is a Vue-based page routing framework, and functions of page jumping, transmission and participation and the like can be realized through configuration. vueRouter can support whether pages are cached by configuring keepAlive (cache components and their configuration).
Publication number CN112905939A discloses the technical field of artificial intelligence, and discloses a method, an apparatus, a device and a storage medium for loading HTML5 page resources, wherein the method comprises the following steps: adopting a click behavior prediction model to predict the click behavior of historical access behavior data and obtain H5 resource obtained from a server to update a local cache; responding to the page loading request, when the H5 resource corresponding to the page identifier to be loaded in the local cache is the same as the H5 resource corresponding to the page identifier to be loaded in the local cache, taking the H5 resource as the H5 resource to be loaded, and otherwise, acquiring the H5 resource from the server according to the page identifier to be loaded, taking the H5 resource as the H5 resource to be loaded; responding to the page loading request, performing page expansion prediction of a preset click progression according to the page identification to be loaded and the click behavior prediction result, and updating a local cache; and loading and rendering the page according to the H5 resource to be loaded to obtain a target H5 page.
The prior art has the following disadvantages:
in the case that page caching is not supported, the page is composed of: a- > B, and under the condition that A is returned from B, the page of A can be created and refreshed again, so that the experience is extremely bad; under the condition that the configuration of keepAlive supports page caching, the situation that the page is not updated again or before the page is generated when the page returns to the same page for multiple times, and the data and the state are difficult to maintain.
Part of the effects of the invention can be achieved by the beforrouteenter and the beforroutereave hook functions, but the functions are relatively complex, have some unknown problems and basically cannot meet the requirements.
The beforeRouteEnter and beforeroutereave modify whether the page supports caching when entering the current page next time by monitoring the keepAlive value in the metadata meta of the current page when the page enters and exits. And whether the page supports cache validation is set to be validated when the page is entered. The problem is then: a- > B- > C, when the C page is entered, whether the C page is cached or not at all is judged, if the C page is cached, the C page is entered again after the C page is returned, the data and the state of the C page cannot be changed, the C page is not cached, the C page is destroyed after the C page is entered into the D page, the C page is created again after the C page is returned again, the user experience is influenced greatly, and the problem of caching of the key page exists.
Disclosure of Invention
The invention aims to provide an intelligent page caching method, an intelligent page caching system and a readable storage medium, which aim to solve the technical problems in the prior art.
The first aspect of the invention provides an intelligent page caching method, which comprises the following steps:
s1: creating a front-end page supporting page caching;
s2: monitoring and recording routing page instance information;
s3: when the fact that the page A needs to be jumped is monitored, whether the information of the page A exists or not is searched, and if the information of the page A does not exist, a page A instance is newly built and jumped; if the information of the page A exists, the information from the page A to the currently displayed page is destroyed, and the original page A is jumped to.
In some embodiments, the front-end page of the support page cache is a vuerouterer-based support page cache.
In some embodiments, KeepAlive of the vuerorouter-based page cache support configuration item is set to true by default.
In some embodiments, specifically, the method after monitoring and recording the routing page instance information further includes: and the routing stack stores the routing path and the page instance information.
In some embodiments, specifically, if the information of the a page does not exist, after the creating of the a page instance and the jumping, the method further includes: the routing path and instance data are cached in the routing stack.
A second aspect of the present invention provides an intelligent page caching system comprising: the system comprises a front-end page and a route cache module, wherein the route cache module comprises a monitoring module; the front-end page supports page caching; the monitoring module is configured to monitor and record routing page instance information; the route cache module is used for searching whether the information of the page A exists or not when the fact that the page A is required to be jumped is monitored, and if the information of the page A does not exist, a new page A instance is created and the page A is jumped; if the information of the page A exists, the information from the page A to the currently displayed page is destroyed, and the original page A is jumped to.
In some embodiments, the front-end page is based on vuerorouter support page caching.
In some embodiments, KeepAlive of the vuerorouter-based page cache support configuration item is set to true by default.
In some embodiments, the route caching module further comprises a route stack;
the routing stack is configured to store routing paths and page instance information;
the snoop module is further configured to cache the routing path and the instance data in a routing stack.
A third aspect of the present invention provides a readable storage medium storing one or more programs, the one or more programs being executable by one or more processors for performing the steps of the intelligent page caching method as described in the first aspect above.
Compared with the prior art, the technical scheme provided by the embodiment of the application has the following advantages:
the mobile front-end page is created during the creation, and is cached during the caching, so that the problem of caching of key pages influencing user experience and performance is solved, the user experience can be improved, the occupation of a system memory is reduced, and the program operation efficiency is improved.
Drawings
In the drawings, which are not necessarily drawn to scale, like reference numerals may describe similar components in different views. Like reference numerals having letter suffixes or different letter suffixes may represent different instances of similar components. The drawings illustrate various embodiments generally by way of example and not by way of limitation, and together with the description and claims serve to explain the disclosed embodiments. The same reference numbers will be used throughout the drawings to refer to the same or like parts, where appropriate. Such embodiments are illustrative, and are not intended to be exhaustive or exclusive embodiments of the present apparatus or method.
Fig. 1 is a flowchart of an intelligent page caching method adopted in the present invention.
Detailed Description
The technical solutions of the present invention will be described clearly and completely with reference to the accompanying drawings, and it should be understood that the described embodiments are some, but not all embodiments of the present invention. All other embodiments, which can be derived by a person skilled in the art from the embodiments given herein without making any creative effort, shall fall within the protection scope of the present invention.
Example 1:
embodiment 1 of the present invention provides an intelligent page caching method,
front-end development: generally refers to PC and mobile terminal web page or H5 page development;
a mobile terminal: mobile equipment such as a mobile phone terminal or a Pad;
vue: a front-end development framework for developing front-end related projects;
VueRouter: vue-based front-end page routing framework;
KeepAlive: and supporting the configuration item of the page cache based on VueRouter.
As shown in fig. 1, the intelligent page caching method includes:
s1: creating a front-end page supporting page caching;
s2: monitoring and recording routing page instance information; the page routing instance is stored in a page instance stack; the page instance information includes page routing paths, route caches, instance data, and other routing parameters.
S3: when the fact that the page A needs to be jumped is monitored, whether the information of the page A exists or not is searched, and if the information of the page A does not exist, a page A instance is newly built and jumped; if the information of the page A exists, the information from the page A to the currently displayed page is destroyed, and the original page A is jumped to.
The monitoring method is to monitor the change of the routing parameter to locate the page to which the user jumps.
When monitoring that a certain page is to be jumped, searching whether information of the page to be jumped exists, if the information of the page to be jumped does not exist, newly building a page instance and jumping, and storing related instance information data in an instance stack; and if the information of the page to be jumped exists, taking the information from the page to be jumped to the currently displayed page instance out of the page instance stack, destroying the information, and returning to the page to be jumped.
In some embodiments, the front-end page of the support page cache is a vuerouterer-based support page cache; constructing a page example stack and monitoring the change of page routing parameters during application initialization, searching whether information of a page to be jumped exists when monitoring that the page to be jumped exists, if the information of the page to be jumped does not exist, newly constructing a page example and jumping, and storing related example information data into the example stack; and if the information of the page to be jumped exists, taking the information from the page to be jumped to the currently displayed page instance out of the page instance stack, destroying the information, and returning to the page to be jumped.
The configuration item KeepAlive based on the VueRouter supported page cache is set to true by default. The default of the configuration item supporting page caching in the front-end routing system is true, and the purpose is to instantiate a front-end page list.
In some embodiments, the method after monitoring and recording the routing page instance information further comprises: and the routing stack stores the routing path and the page instance information. The page instance routing stack space is not set, and can be set infinitely under the condition of memory permission.
In some embodiments, if the information of the a page does not exist, after the creating an a page instance and jumping, the method further includes: the routing path and instance data are cached in the routing stack.
Example 2:
according to the intelligent page caching method described in embodiment 1, in some specific schemes, application and implementation of the method are specifically described, and particularly, specific situations of a page instance stack are as follows:
1. the stack is empty after the system is initialized;
2. and (4) entering an A page, wherein A does not exist in the stack, creating an instance of A, and stacking the A page instance and related information, which is represented by A0. At this time in the stack: 【A0】 (ii) a
3. And (4) entering a page B, wherein the page B does not exist in the stack, creating an instance of the page B, and stacking the page B instance and related information, which is represented by B0. At this time in the stack: [ A0, B0 ];
4. and C page is entered, C does not exist in the stack, an instance of C is created, and page C instance and related information are stacked and are represented by C0. At this time in the stack: [ A0, B0, C0 ];
5. and (4) entering a D page, wherein D does not exist in the stack, creating an instance of D, and stacking the page D instance and related information, wherein D0 represents. At this time in the stack: [ A0, B0, C0, D0 ];
6. at this time, the page C is jumped, the page C exists in the stack, the data D0 before the page C (not included) and the current page is taken out from the stack, the page C is returned, and the page instance corresponding to the D0 is destroyed. At this time in the stack: [ A0, B0, C0 ];
7. at the moment, the page A is jumped, the data B0 and C0 before the page A (not included) and the current page are taken out from the stack, the page A is returned, and the page instances corresponding to the B0 and the C0 are destroyed. At this time in the stack: 【A0】 (ii) a
8. And (4) entering a page B, wherein the page B does not exist in the stack, creating an instance of the page B, and stacking the page B instance and related information, which is represented by B1. At this time in the stack: [ A0, B1 ] … …
Example 3:
according to the method for caching an intelligent page provided in embodiment 1, embodiment 3 provides an intelligent page caching system, which specifically includes:
the system comprises a front-end page and a route cache module, wherein the route cache module comprises a monitoring module; the front-end page supports page caching; the monitoring module is configured to monitor and record routing page instance information; the route cache module is used for searching whether the information of the page A exists or not when the fact that the page A is required to be jumped is monitored, and if the information of the page A does not exist, a new page A instance is created and the page A is jumped; if the information of the page A exists, the information from the page A to the currently displayed page is destroyed, and the original page A is jumped to.
In some embodiments, the front-end page is based on vuerorouter support page caching; and the configuration item KeepAlive based on the VueRouter support page cache is set to true by default.
Specifically, in some embodiments, the route caching module includes: the route cache module also comprises a route stack;
the routing stack is configured to store routing paths and page instance information;
the snoop module is further configured to cache the routing path and the instance data in a routing stack.
Example 4:
embodiment 4 of the present invention provides a readable storage medium, including: the readable storage medium stores one or more programs, which are executable by one or more processors to implement the steps of the smart page caching method described in embodiment 1 above.
Example 5:
the invention additionally provides computer equipment, which comprises a processor and a memory, wherein the memory is used for storing computer programs; the processor is configured to implement the steps of the intelligent page caching method according to embodiment 1 when executing the computer program stored in the memory.
According to the intelligent page caching method, the mobile front-end page is created during creation, caching is performed during caching, the problem of key page caching influencing user experience and performance is solved, user experience can be improved, system memory occupation is reduced, and program operation efficiency is improved.
The terminology used herein is for the purpose of describing particular embodiments only and is not intended to be limiting of the invention. As used in this specification and the appended claims, the singular forms "a", "an", and "the" are intended to include the plural forms as well, unless the context clearly indicates otherwise. It should also be understood that the term "and/or" as used herein refers to and encompasses any and all possible combinations of one or more of the associated listed items.
It is to be understood that although the terms first, second, third, etc. may be used herein to describe various information, these information should not be limited to these terms. These terms are only used to distinguish one type of information from another. For example, first information may also be referred to as second information, and similarly, second information may also be referred to as first information, without departing from the scope of the present invention. The word "if" as used herein may be interpreted as "at … …" or "when … …" or "in response to a determination", depending on the context.
The implementation process of the functions and actions of each unit in the above device is specifically described in the implementation process of the corresponding step in the above method, and is not described herein again.
For the device embodiments, since they substantially correspond to the method embodiments, reference may be made to the partial description of the method embodiments for relevant points. The above-described embodiments of the apparatus are merely illustrative, and the units described as separate parts may or may not be physically separate, and parts displayed as units may or may not be physical units, may be located in one place, or may be distributed on a plurality of network units. Some or all of the modules can be selected according to actual needs to achieve the purpose of the scheme of the invention. One of ordinary skill in the art can understand and implement it without inventive effort.
Embodiments of the subject matter and the functional operations described in this specification can be implemented in: digital electronic circuitry, tangibly embodied computer software or firmware, computer hardware including the structures disclosed in this specification and their structural equivalents, or a combination of one or more of them. Embodiments of the subject matter described in this specification can be implemented as one or more computer programs, i.e., one or more modules of computer program instructions, encoded on a tangible, non-transitory program carrier for execution by, or to control the operation of, data processing apparatus. Alternatively or additionally, the program instructions may be encoded on an artificially generated propagated signal, e.g., a machine-generated electrical, optical, or electromagnetic signal, that is generated to encode and transmit information to suitable receiver apparatus for execution by the data processing apparatus. The computer storage medium may be a machine-readable storage device, a machine-readable storage substrate, a random or serial access memory device, or a combination of one or more of them.
The processes and logic flows described in this specification can be performed by one or more programmable computers executing one or more computer programs to perform corresponding functions by operating on input data and generating output. The processes and logic flows can also be performed by, and apparatus can also be implemented as, special purpose logic circuitry, e.g., an FPGA (field programmable gate array) or an ASIC (application-specific integrated circuit).
Computers suitable for executing computer programs include, for example, general and/or special purpose microprocessors, or any other type of central processing unit. Generally, a central processing unit will receive instructions and data from a read-only memory and/or a random access memory. The basic components of a computer include a central processing unit for implementing or executing instructions and one or more memory devices for storing instructions and data. Generally, a computer will also include, or be operatively coupled to receive data from or transfer data to, or both, one or more mass storage devices for storing data, e.g., magnetic, magneto-optical disks, or optical disks. However, a computer does not necessarily have such a device. Moreover, a computer may be embedded in another device, e.g., a mobile telephone, a Personal Digital Assistant (PDA), a mobile audio or video player, a game console, a Global Positioning System (GPS) receiver, or a portable storage device such as a Universal Serial Bus (USB) flash drive, to name a few.
Computer-readable media suitable for storing computer program instructions and data include all forms of non-volatile memory, media and memory devices, including by way of example semiconductor memory devices (e.g., EPROM, EEPROM, and flash memory devices), magnetic disks (e.g., an internal hard disk or a removable disk), magneto-optical disks, and CD ROM and DVD-ROM disks. The processor and the memory can be supplemented by, or incorporated in, special purpose logic circuitry.
While this specification contains many specific implementation details, these should not be construed as limitations on the scope of any invention or of what may be claimed, but rather as descriptions of features specific to particular embodiments of particular inventions. Certain features that are described in this specification in the context of separate embodiments can also be implemented in combination in a single embodiment. In other instances, features described in connection with one embodiment may be implemented as discrete components or in any suitable subcombination. Moreover, although features may be described above as acting in certain combinations and even initially claimed as such, one or more features from a claimed combination can in some cases be excised from the combination, and the claimed combination may be directed to a subcombination or variation of a subcombination.
Similarly, while operations are depicted in the drawings in a particular order, this should not be understood as requiring that such operations be performed in the particular order shown or in sequential order, or that all illustrated operations be performed, to achieve desirable results. In some cases, multitasking and parallel processing may be advantageous. Moreover, the separation of various system modules and components in the embodiments described above should not be understood as requiring such separation in all embodiments, and it should be understood that the described program components and systems can generally be integrated together in a single software product or packaged into multiple software products.
Thus, particular embodiments of the subject matter have been described. Other embodiments are within the scope of the following claims. In some cases, the actions recited in the claims can be performed in a different order and still achieve desirable results. Further, the processes depicted in the accompanying figures do not necessarily require the particular order shown, or sequential order, to achieve desirable results. In some implementations, multitasking and parallel processing may be advantageous.
The above description is only for the purpose of illustrating the preferred embodiments of the present invention and is not to be construed as limiting the invention, and any modifications, equivalents, improvements and the like made within the spirit and principle of the present invention should be included in the scope of the present invention.

Claims (10)

1. An intelligent page caching method, characterized in that the method comprises:
s1: creating a front-end page supporting page caching;
s2: monitoring and recording routing page instance information;
s3: when the fact that the page A needs to be jumped is monitored, whether the information of the page A exists or not is searched, and if the information of the page A does not exist, a page A instance is newly built and jumped; if the information of the page A exists, the information from the page A to the currently displayed page is destroyed, and the original page A is jumped to.
2. The intelligent page caching method according to claim 1, wherein the front-end page supporting page caching is based on VueRouter supported page caching.
3. The intelligent page caching method according to claim 2, wherein said VueRouter-based page cache support configuration item KeepAlive is set to true by default.
4. The intelligent page caching method according to claim 1, wherein said method after intercepting and recording routing page instance information further comprises: and the routing stack stores the routing path and the page instance information.
5. The intelligent page caching method according to claim 4, wherein if the information of the A page does not exist, the method further comprises after the A page instance is newly created and the jump is made: the routing path and instance data are cached in the routing stack.
6. An intelligent page caching system, the system comprising: the system comprises a front-end page and a route cache module, wherein the route cache module comprises a monitoring module; the front-end page supports page caching; the monitoring module is configured to monitor and record routing page instance information; the route cache module is used for searching whether the information of the page A exists or not when the fact that the page A is required to be jumped is monitored, and if the information of the page A does not exist, a new page A instance is created and the page A is jumped; if the information of the page A exists, the information from the page A to the currently displayed page is destroyed, and the original page A is jumped to.
7. The intelligent page caching system of claim 6, wherein the front-end page is based on a VueRouter support page cache.
8. The intelligent page caching system according to claim 7, wherein said VueRouter-based page cache support configuration item KeepAlive is set to true by default.
9. The intelligent page caching system of claim 6, wherein the route caching module further comprises a route stack;
the routing stack is configured to store routing paths and page instance information;
the snoop module is further configured to cache the routing path and the instance data in a routing stack.
10. A readable storage medium storing one or more programs, the one or more programs being executable by one or more processors for performing the steps of the intelligent page caching method as recited in claims 1-5.
CN202111026887.8A 2021-09-02 2021-09-02 Intelligent page caching method and system and readable storage medium Pending CN113722629A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202111026887.8A CN113722629A (en) 2021-09-02 2021-09-02 Intelligent page caching method and system and readable storage medium

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202111026887.8A CN113722629A (en) 2021-09-02 2021-09-02 Intelligent page caching method and system and readable storage medium

Publications (1)

Publication Number Publication Date
CN113722629A true CN113722629A (en) 2021-11-30

Family

ID=78680998

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202111026887.8A Pending CN113722629A (en) 2021-09-02 2021-09-02 Intelligent page caching method and system and readable storage medium

Country Status (1)

Country Link
CN (1) CN113722629A (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN115097992A (en) * 2022-06-28 2022-09-23 挂号网(杭州)科技有限公司 Page access method and device, electronic equipment and storage medium

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN106095568A (en) * 2016-06-01 2016-11-09 努比亚技术有限公司 Memory management device, mobile terminal and method
CN113312570A (en) * 2020-08-31 2021-08-27 阿里巴巴集团控股有限公司 Page jump method, terminal device and storage medium
CN113486274A (en) * 2021-07-13 2021-10-08 中原银行股份有限公司 Front-end page routing method, terminal equipment and computer medium

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN106095568A (en) * 2016-06-01 2016-11-09 努比亚技术有限公司 Memory management device, mobile terminal and method
CN113312570A (en) * 2020-08-31 2021-08-27 阿里巴巴集团控股有限公司 Page jump method, terminal device and storage medium
CN113486274A (en) * 2021-07-13 2021-10-08 中原银行股份有限公司 Front-end page routing method, terminal equipment and computer medium

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
张廷杭 等: "《基于Vue的微信小程序开发实践教程》", pages: 177 - 182 *

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN115097992A (en) * 2022-06-28 2022-09-23 挂号网(杭州)科技有限公司 Page access method and device, electronic equipment and storage medium

Similar Documents

Publication Publication Date Title
CN101930449B (en) Client, brokerage server and method for providing cloud storage
US20180276214A1 (en) Sharing container images between mulitple hosts through container orchestration
CN109976771B (en) Application deployment method and device
CN108780404A (en) Effective real-time migration of remote access data
CN111046164B (en) Method and equipment for updating book to be read
KR102352564B1 (en) Method and system for providing notification of to-do-list
US10310748B2 (en) Determining data locality in a distributed system using aggregation of locality summaries
CN111143039B (en) Scheduling method and device of virtual machine and computer storage medium
CN111259019A (en) Resource allocation method, device, equipment and storage medium
US20110167405A1 (en) Application building system, method and computer-readable medium
CN113722629A (en) Intelligent page caching method and system and readable storage medium
CN103136043B (en) The moving method of a kind of asynchronous IO, System and Network node
CN111580883B (en) Application program starting method, device, computer system and medium
CN116233254A (en) Business cut-off method, device, computer equipment and storage medium
WO2019179252A1 (en) Sample playback data access method and device
CN115934354A (en) Online storage method and device
CN110837499A (en) Data access processing method and device, electronic equipment and storage medium
CN109101514A (en) Data lead-in method and device
US20110197202A1 (en) Handling Messages in a Computing Device
CN107667343A (en) On-demand loading resource
CN111786827A (en) Fault association positioning alarm method and device for distributed cloud computing environment
WO2020019315A1 (en) Computational operation scheduling method employing graphic data, system, computer readable medium, and apparatus
CN114756367B (en) Service migration method, device, medium and electronic equipment
CN112929398B (en) Data sharing method, device, server and storage medium
CN111680170B (en) Physical characteristic prediction method and device of periodic structure and related products

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
RJ01 Rejection of invention patent application after publication
RJ01 Rejection of invention patent application after publication

Application publication date: 20211130