CN112286660A - Control method and control device for delayed trigger transaction - Google Patents

Control method and control device for delayed trigger transaction Download PDF

Info

Publication number
CN112286660A
CN112286660A CN202011186247.9A CN202011186247A CN112286660A CN 112286660 A CN112286660 A CN 112286660A CN 202011186247 A CN202011186247 A CN 202011186247A CN 112286660 A CN112286660 A CN 112286660A
Authority
CN
China
Prior art keywords
transaction request
request information
trigger time
information
transaction
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.)
Withdrawn
Application number
CN202011186247.9A
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.)
Shanghai 2345 Network Technology Co ltd
Original Assignee
Shanghai 2345 Network Technology 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 Shanghai 2345 Network Technology Co ltd filed Critical Shanghai 2345 Network Technology Co ltd
Priority to CN202011186247.9A priority Critical patent/CN112286660A/en
Publication of CN112286660A publication Critical patent/CN112286660A/en
Withdrawn legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/48Program initiating; Program switching, e.g. by interrupt
    • G06F9/4806Task transfer initiation or dispatching
    • G06F9/4843Task transfer initiation or dispatching by program, e.g. task dispatcher, supervisor, operating system
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/23Updating
    • G06F16/2308Concurrency control
    • G06F16/2315Optimistic concurrency control
    • G06F16/2322Optimistic concurrency control using timestamps
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/24Querying
    • G06F16/245Query processing
    • G06F16/2455Query execution
    • G06F16/24552Database cache management

Abstract

The invention discloses a control method for delayed trigger transaction, which comprises the following steps: a. receiving transaction request information; b. adaptively storing the transaction request information and trigger time information corresponding to the transaction request information in a cache; c. polling all the trigger time information in the cache by a monitor, and sending an instruction for processing the corresponding transaction request information when a certain trigger time expires. According to another aspect of the invention, a control device for delayed triggering transaction is also provided. The invention discloses a control method of delayed trigger transaction, which orderly delays the execution of delayed transaction by establishing, sequencing and monitoring a set or a queue and a polling mechanism. The invention is simple to realize, can effectively solve various conditions required by delayed transactions, is easy to popularize and has higher commercial value.

Description

Control method and control device for delayed trigger transaction
Technical Field
The invention belongs to a computer processing system, particularly relates to the field of mobile internet, and particularly relates to a control method and a control device for carrying out delay trigger management on transactions needing delay in an application program.
Background
In computer processing systems, there are situations where a delay triggers a transaction. The situation is different based on the occurrence context of different transactions, but one general requirement is to initiate a transaction, but the transaction is not executed immediately, but is triggered to execute again by waiting for a specific time point. For example, closing a pop-up window, typically after a time threshold has expired, and then performing a closing action (transaction), or the like.
For such a transaction request triggered by a delay, a mature technical solution is required for system management. The invention aims to provide a set of independent running technical scheme for managing delayed trigger transaction.
Disclosure of Invention
Aiming at the requirements in the prior art, the invention aims to provide a control method for delayed trigger transaction, which is used for realizing delayed processing of transaction requests which can be delayed, and comprises the following steps:
a. receiving transaction request information;
b. adaptively storing the transaction request information and trigger time information corresponding to the transaction request information in a cache;
c. polling all the trigger time information in the cache by a monitor, and sending an instruction for processing the corresponding transaction request information when a certain trigger time expires.
Preferably, the step b further comprises the following steps:
i. judging whether the transaction request information can be processed in a delayed way;
if the transaction request information can be processed in a delayed way, executing the step b.
Preferably, the method further comprises the following steps:
if the transaction request information can not be processed in a delayed mode, directly processing the transaction request information, and not executing the step b.
Preferably, the step b comprises the steps of:
b1. and adaptively storing the transaction request information and trigger time information corresponding to the transaction request information in a Redis ordered set.
Preferably, the step b comprises the steps of:
b1' using the unique identification of the transaction request information as a Key to store the transaction request information in a Redis ordered set.
Preferably, the step b1' further comprises the following steps:
-sorting the Redis ordered set by taking a trigger timestamp corresponding to the transaction request information as a basis for sorting.
Preferably, in the step c, the step of polling all trigger time information in the buffer by a monitor is performed by:
c1. inquiring all trigger time information in the Redis ordered set through a timer;
c2. and temporarily sending an instruction for processing the corresponding transaction request information at a certain trigger time.
Preferably, in the step c, the step of polling all trigger time information in the buffer by a monitor is performed by:
-polling starting from a first one of the corresponding sets and using said first piece of transaction request information as current transaction request information;
-if the trigger timestamp corresponding to the current transaction request information is less than or equal to the current timestamp, the unique identifier of the transaction request information issues an instruction for processing the corresponding transaction request information, and the transaction request information is deleted from the set; otherwise, executing the next step, and taking the next piece of transaction request information as the current transaction request information;
-if the trigger timestamp corresponding to the current transaction request message is greater than the current timestamp, restarting polling with the first transaction request message in the corresponding set as the current transaction request message.
According to another aspect of the present invention, there is also provided a control device for delayed triggered transaction, comprising:
first receiving means for receiving transaction request information;
first storage means for adaptively storing the transaction request information and trigger time information corresponding to the transaction request information in a cache;
and the first processing device is used for polling all the trigger time information in the cache through a monitor and sending out an instruction for processing the corresponding transaction request information when a certain trigger time expires.
Preferably, the control device further comprises the following means:
first judging means for judging whether the transaction request information can be processed with a delay;
and the second processing device starts the first storage device if the transaction request information can be processed in a delayed mode.
Preferably, the first storage means comprises:
and the second storage device is used for adaptively storing the transaction request information and trigger time information corresponding to the transaction request information in a Redis ordered set.
The invention discloses a control method of delayed trigger transaction, which orderly delays the execution of delayed transaction by establishing, sequencing and monitoring a set or a queue and a polling mechanism. The invention is simple to realize, can effectively solve various conditions required by delayed transactions, is easy to popularize and has higher commercial value.
Drawings
Other features, objects and advantages of the invention will become more apparent upon reading of the detailed description of non-limiting embodiments with reference to the following drawings:
fig. 1 is a schematic flow chart illustrating a detailed flow chart of a method for controlling a delay triggered transaction according to a first embodiment of the present invention; and
fig. 2 is a schematic flow chart illustrating a detailed flow of a method for controlling a delay triggered transaction according to a second embodiment of the present invention.
Detailed Description
In order to better and clearly show the technical scheme of the invention, the invention is further described with reference to the attached drawings.
The technical personnel in the field understand that, aiming at the defects of the prior art, the invention discloses a control method of delayed trigger transaction, which can manage a plurality of transactions needing delayed trigger and start a specific delayed trigger transaction when the trigger time is reached. Through the technical scheme provided by the invention, a plurality of delay trigger transactions can be managed in order to form an independent management mechanism.
Fig. 1 is a schematic flow chart illustrating a control method for a delay triggered transaction according to a first embodiment of the present invention. Specifically, the method comprises the following steps:
first, the process proceeds to step S101, and transaction request information is received. Those skilled in the art understand that, preferably, for the control device and the control method provided by the present invention, only the transaction request information that needs to be triggered by a delay time is sent to the control device provided by the present invention, and is further processed by the embodiments shown in fig. 1 and fig. 2. Thus, upon receipt of one or more transaction request messages, the control means preferably proceeds directly to initiate subsequent processing steps, such as step S102, step S103, etc. In another variation, all transaction request messages are sent to the control device, but not every transaction request message is a time-delay triggered transaction, so the control device also needs to perform screening, as described below. Furthermore, in another variation, all the transaction request information is first sent to a general control system, and the general control system filters all the transaction requests and forwards the transaction request information with the delay triggering requirement to the control device. Such variations are within the scope of the present invention and are not described herein.
Then, step S102 is executed to adaptively store the transaction request information and the trigger time information corresponding to the transaction request information in a cache. For transaction request information with a delayed trigger requirement, the control device preferably stores the transaction request information in a cache, and the transaction request information is reserved for subsequent continuous processing. Specifically, in this embodiment, the transaction request information and the trigger time information corresponding to the transaction request information are adaptively stored in the cache, that is, when the transaction request information and the trigger time information are stored, the trigger time information corresponding to each transaction request information is stored together, for example, this is a timestamp, as shown in the embodiment shown in fig. 2. Those skilled in the art will appreciate that upon the arrival of the trigger time, the transaction request message will preferably be initiated for execution, thereby accomplishing the objects of the present invention.
And finally, step S103 is executed, wherein a monitor polls all trigger time information in the cache, and when a certain trigger time expires, an instruction for processing the transaction request information is issued. After all the transaction request messages are stored in the cache, in this step, all the transaction request messages are polled, for example, a polling monitor that executes in a loop is started, all the transaction request messages in the cache are queried, whether the corresponding transaction request messages should be executed is determined by the trigger time corresponding to each transaction request message, and if the trigger time expires, that is, the current time (machine time or server time) of the polling monitor is consistent with the trigger time corresponding to the transaction request message, or the trigger time corresponding to the transaction request message exceeds the current time, the transaction request messages are preferably started to execute. Accordingly, once a transaction request message is executed, it is preferably removed from the cache, i.e. it does not need to be managed with a delay trigger.
Further, those skilled in the art will understand that, in both the embodiment shown in fig. 1 and the embodiment shown in fig. 2, the transaction request information is preferably stored in a cache and deleted from the cache after the transaction request information is executed, so as to make efficient use of the cache and facilitate management. Those skilled in the art understand that the transaction request information may be managed by various technical means, for example, the transaction request information is preferably managed by sequencing in a queue manner, and the transaction request information may also be managed by using a stack, a tree structure, a database structure, a text manner, and the like, which are within the scope of the present invention and will not be described herein again.
Further, it is understood by those skilled in the art that, in one variation, after the control device receives a transaction request message, the following steps are performed:
i. judging whether the transaction request information can be processed in a delayed way;
if the transaction request information can be processed in a delayed manner, executing the step S102 in FIG. 1; if the transaction request information can not be processed in a delayed manner, the transaction request information is directly processed, and the subsequent steps shown in fig. 1 are not executed. Those skilled in the art will appreciate that in such a variation, not every received transaction request message has a delayed trigger attribute, so the control device determines whether the transaction request message has a delayed trigger time or similar attribute tag, and then determines whether to perform the processing of step S102 and subsequent steps shown in fig. 1.
Further, in another preferred embodiment, the step S103 can be implemented by: and adaptively storing the transaction request information and trigger time information corresponding to the transaction request information in a Redis ordered set. In such an embodiment, a Redis ordered set is established in the cache, and the transaction request information is managed via the Redis ordered set. Further, those skilled in the art understand that the Redis ordered set is only one implementation way for managing the transaction request information, and the transaction request information can be easily ordered by the Redis ordered set with a proper ordering key value, so that polling becomes simpler, popularization is easy, and the work efficiency of the computer processing system is improved.
Continuing the thought of the Redis ordered set, further preferably, the step related to the Redis ordered set may further include the following steps: and storing the transaction request information in a Redis ordered set by taking the unique identifier of the transaction request information as a Key. Further, those skilled in the art will understand that, since the unique identifier of the transaction request information has uniqueness, the unique identifier can be used as an index of the Redis ordered set or a similar key, and similar variations are within the scope of the present invention and will not be described herein.
Continuing the thought of the Redis ordered set, further preferably, the step related to the Redis ordered set may further include the following steps: and sequencing the Redis ordered set by taking the trigger time stamp corresponding to the transaction request information as a sequencing basis. In this embodiment, each transaction request information in the Redis ordered set is sorted by using the trigger time information of each transaction request information, preferably expressed as a transaction request information trigger time stamp as a sorted key value, and when there is a plurality of transaction request information with consistent timestamp information, the transaction request information does not need to be sorted together in order. In other variations, all transaction request information in the Redis ordered set or similar containers (e.g., queues, databases) may be sorted in other manners, which is within the scope of the present invention and will not be described herein.
On the basis of the embodiment shown in fig. 1, fig. 2 is a schematic flow chart showing a control method for delayed triggered transaction according to a second embodiment of the present invention.
In particular, those skilled in the art will appreciate that after the transaction request messages are stored in the cache, the transaction request messages need to be monitored to initiate one or more transaction request messages when triggered by a delay. The process of polling all trigger time information in the cache by a monitor may be performed by:
c1. inquiring all trigger time information in the Redis ordered set through a timer;
c2. and temporarily sending an instruction for processing the corresponding transaction request information at a certain trigger time.
Specifically, those skilled in the art understand that, in order to not miss any transaction request information, the timer should monitor all transaction request information in real time, for example, a common practice is to use a continuous loop monitor to perform polling query on all transaction request information in the cache or the Redis ordered set, and similar variations are within the protection scope of the present invention and are not described herein again.
Correspondingly, if the delay trigger time corresponding to a certain transaction request message arrives, the transaction request message is directly processed, that is, the transaction request message is started, or the transaction request message is sent to the main process to be queued for processing, and similar variations are also within the protection scope of the present invention and are not described herein again.
Further, those skilled in the art will appreciate that the monitor may be implemented by a specific process, for example, the process may be initiated once every 60 seconds, and may be polled for 60 seconds each time, so as to continuously poll all transaction request information, which will not be described herein.
More specifically, referring to the embodiment shown in fig. 2, step S201 is first executed, and polling is started from the first piece in the corresponding set, and the first piece of transaction request information is taken as the current transaction request information. Those skilled in the art will appreciate that the corresponding set, i.e. the set storing the transaction request information, may exist in any form, and such variations are within the scope of the present invention and are not described herein. Preferably, the query is initiated from the first transaction request message of the set. Further, those skilled in the art understand that, in the case of the sorted set, the first transaction request information record is usually the transaction request information closest to the current time, and is not described herein again.
Secondly, step S202 is carried out, when the trigger time stamp corresponding to the current transaction request information is less than or equal to the current time stamp, an instruction for processing the corresponding transaction request information is sent out based on the unique identifier of the transaction request information, and the transaction request information is deleted from the set; otherwise, executing the next step, and taking the next transaction request information as the current transaction request information. Once the triggering timestamp corresponding to the current transaction request information is less than or equal to the current timestamp in the polling process, the triggering timestamp indicates that the current transaction request information has reached the triggered time, and then the transaction request information is executed. When the control device cannot execute the transaction request information, an instruction for executing the transaction request information is sent to a corresponding main control system, such as a main CPU, and the like, which is not described herein again.
Further preferably, since the current transaction request information is already executed, it is not necessary to monitor the current transaction request information, and the transaction request information is deleted from the cache or any one of the sets of managed transaction request information, and similar variations are within the protection scope of the present invention and are not described herein again.
Finally, step S203 is executed, and when the trigger timestamp corresponding to the current transaction request information is greater than the current timestamp, the first transaction request information in the corresponding set is used as the current transaction request information, and polling is restarted. When the trigger timestamp corresponding to the current transaction request information is greater than the current timestamp, it indicates that the current transaction request information and the subsequent transaction request information have not reached the trigger time yet, so polling is started again from the first transaction request information in the cache, and the cycle is repeated until no transaction request information exists in the cache.
With reference to the embodiment shown in fig. 1 and fig. 2, those skilled in the art will understand that, correspondingly, in other embodiments of the present invention, there is also provided a control device for delayed triggered transaction, which is characterized by comprising the following devices:
first receiving means for receiving transaction request information;
first storage means for adaptively storing the transaction request information and trigger time information corresponding to the transaction request information in a cache;
and the first processing device is used for polling all the trigger time information in the cache through a monitor and sending out an instruction for processing the corresponding transaction request information when a certain trigger time expires.
In yet another variation, the control device further includes:
first judging means for judging whether the transaction request information can be processed with a delay;
and the second processing device starts the first storage device if the transaction request information can be processed in a delayed mode.
In yet another variation, the first storage device includes:
and the second storage device is used for adaptively storing the transaction request information and trigger time information corresponding to the transaction request information in a Redis ordered set.
The above-mentioned apparatus can be implemented by referring to the descriptions of the embodiment and the variation shown in fig. 1 and fig. 2, which are not repeated herein.
The foregoing description of specific embodiments of the present invention has been presented. It is to be understood that the present invention is not limited to the specific embodiments described above, and that various changes and modifications may be made by one skilled in the art within the scope of the appended claims without departing from the spirit of the invention.

Claims (10)

1. A control method for delayed trigger transaction is characterized by comprising the following steps:
a. receiving transaction request information;
b. adaptively storing the transaction request information and trigger time information corresponding to the transaction request information in a cache;
c. polling all the trigger time information in the cache by a monitor, and sending an instruction for processing the corresponding transaction request information when a certain trigger time expires.
2. The control method according to claim 1, characterized in that step b is preceded by the step of:
i. judging whether the transaction request information can be processed in a delayed way;
if the transaction request information can be processed in a delayed way, executing the step b.
3. The control method according to claim 2, characterized by further comprising the steps of:
if the transaction request information can not be processed in a delayed mode, directly processing the transaction request information, and not executing the step b.
4. The control method according to any one of claims 1 to 3, characterized in that the step b includes the steps of:
b1. and adaptively storing the transaction request information and trigger time information corresponding to the transaction request information in a Redis ordered set.
5. The control method according to any one of claims 1 to 4, characterized in that the step b includes the steps of:
b1', using the unique identifier of the transaction request information as a Key to store the transaction request information in a Redis ordered set, and using the trigger timestamp corresponding to the transaction request information as a basis for ordering to order the Redis ordered set.
6. The control method according to any one of claims 1 to 5, wherein in the step c, the step of polling all trigger time information in the buffer by a monitor is performed by:
c1. inquiring all trigger time information in the Redis ordered set through a timer;
c2. and temporarily sending an instruction for processing the corresponding transaction request information at a certain trigger time.
7. The control method according to any one of claims 1 to 6, wherein in the step c, the step of polling all trigger time information in the buffer by a monitor is performed by:
-polling starting from a first one of the corresponding sets and using said first piece of transaction request information as current transaction request information;
-if the trigger timestamp corresponding to the current transaction request information is less than or equal to the current timestamp, the unique identifier of the transaction request information issues an instruction for processing the corresponding transaction request information; otherwise, executing the next step, and taking the next piece of transaction request information as the current transaction request information;
-if the trigger timestamp corresponding to the current transaction request message is greater than the current timestamp, restarting polling with the first transaction request message in the corresponding set as the current transaction request message.
8. A control device for delayed triggered transactions, comprising:
first receiving means for receiving transaction request information;
first storage means for adaptively storing the transaction request information and trigger time information corresponding to the transaction request information in a cache;
and the first processing device is used for polling all the trigger time information in the cache through a monitor and sending out an instruction for processing the corresponding transaction request information when a certain trigger time expires.
9. The control device according to claim 8, characterized by further comprising means for:
first judging means for judging whether the transaction request information can be processed with a delay;
and the second processing device starts the first storage device if the transaction request information can be processed in a delayed mode.
10. The control device according to claim 8 or 9, wherein the first storage means includes:
and the second storage device is used for adaptively storing the transaction request information and trigger time information corresponding to the transaction request information in a Redis ordered set.
CN202011186247.9A 2020-10-30 2020-10-30 Control method and control device for delayed trigger transaction Withdrawn CN112286660A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202011186247.9A CN112286660A (en) 2020-10-30 2020-10-30 Control method and control device for delayed trigger transaction

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202011186247.9A CN112286660A (en) 2020-10-30 2020-10-30 Control method and control device for delayed trigger transaction

Publications (1)

Publication Number Publication Date
CN112286660A true CN112286660A (en) 2021-01-29

Family

ID=74352487

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202011186247.9A Withdrawn CN112286660A (en) 2020-10-30 2020-10-30 Control method and control device for delayed trigger transaction

Country Status (1)

Country Link
CN (1) CN112286660A (en)

Citations (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20120290717A1 (en) * 2011-04-27 2012-11-15 Michael Luna Detecting and preserving state for satisfying application requests in a distributed proxy and cache system
US20180059966A1 (en) * 2016-08-31 2018-03-01 Futurewei Technologies, Inc. Transaction-based hybrid memory
CN108733462A (en) * 2017-04-18 2018-11-02 北京京东尚科信息技术有限公司 The method and apparatus of delay task
CN109558230A (en) * 2018-11-23 2019-04-02 北京百分点信息科技有限公司 A kind of distributed timing task scheduling system and method
CN109584060A (en) * 2018-10-15 2019-04-05 平安科技(深圳)有限公司 Processing method, device and the computer equipment and storage medium of timing transaction task
CN110210841A (en) * 2019-05-22 2019-09-06 网联清算有限公司 Transaction processing method and device
CN110457342A (en) * 2019-07-02 2019-11-15 网联清算有限公司 Transaction processing method and device
CN110502327A (en) * 2019-08-28 2019-11-26 四川长虹电器股份有限公司 Method based on the processing of Redis high concurrent delayed tasks
CN111045806A (en) * 2019-12-16 2020-04-21 云南优鸟科技有限公司 Method and system for realizing delay message queue
CN111179090A (en) * 2020-01-02 2020-05-19 中国银行股份有限公司 Transaction data processing method, device and equipment
CN111309548A (en) * 2020-02-03 2020-06-19 中国银联股份有限公司 Timeout monitoring method and device and computer readable storage medium

Patent Citations (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20120290717A1 (en) * 2011-04-27 2012-11-15 Michael Luna Detecting and preserving state for satisfying application requests in a distributed proxy and cache system
US20180059966A1 (en) * 2016-08-31 2018-03-01 Futurewei Technologies, Inc. Transaction-based hybrid memory
CN108733462A (en) * 2017-04-18 2018-11-02 北京京东尚科信息技术有限公司 The method and apparatus of delay task
CN109584060A (en) * 2018-10-15 2019-04-05 平安科技(深圳)有限公司 Processing method, device and the computer equipment and storage medium of timing transaction task
CN109558230A (en) * 2018-11-23 2019-04-02 北京百分点信息科技有限公司 A kind of distributed timing task scheduling system and method
CN110210841A (en) * 2019-05-22 2019-09-06 网联清算有限公司 Transaction processing method and device
CN110457342A (en) * 2019-07-02 2019-11-15 网联清算有限公司 Transaction processing method and device
CN110502327A (en) * 2019-08-28 2019-11-26 四川长虹电器股份有限公司 Method based on the processing of Redis high concurrent delayed tasks
CN111045806A (en) * 2019-12-16 2020-04-21 云南优鸟科技有限公司 Method and system for realizing delay message queue
CN111179090A (en) * 2020-01-02 2020-05-19 中国银行股份有限公司 Transaction data processing method, device and equipment
CN111309548A (en) * 2020-02-03 2020-06-19 中国银联股份有限公司 Timeout monitoring method and device and computer readable storage medium

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
张吉赞;古志民;: "多核共享缓存bank冲突分析及其延迟最小化", 计算机学报, no. 09 *

Similar Documents

Publication Publication Date Title
CN109857737B (en) Cold and hot data storage method and device and electronic equipment
CN108536532B (en) Batch task processing method and system
CN111813573B (en) Communication method of management platform and robot software and related equipment thereof
CN111045806A (en) Method and system for realizing delay message queue
CN107451853B (en) Method, device and system for real-time red packet distribution and storage medium
CN112131286B (en) Data processing method and device based on time sequence and storage medium
CN107548039B (en) Short message retry processing method, device and system
EP1894096A1 (en) Apparatus, system, and method for facilitating communication between an enterprise information system and a client
CN114641034A (en) Downlink information processing method based on 5G message system and related components
CN110888739B (en) Distributed processing method and device for delayed tasks
CN106550021B (en) Push method and device for push message
CN113377817A (en) Data processing method, system, device and storage medium
CN112286660A (en) Control method and control device for delayed trigger transaction
CN107273047B (en) Cache management method, cache manager and storage management software
CN116366634A (en) File downloading method, device, terminal, source server and medium
CN111597033A (en) Task scheduling method and device
CN116095073A (en) Cloud desktop message processing system and method based on aging classification
CN107563942B (en) Logistics data batch processing method, logistics processing system and processing device
CN112181671B (en) Method and device for processing delay message
CN110351223B (en) Timing reminding method, device and computer program medium
CN110825505A (en) Task scheduling method and device, computer equipment and storage medium
CN111026529A (en) Task stopping method and device for distributed task processing system
CN113127220B (en) Data issuing method and device and electronic equipment
CN112307060B (en) Method and device for processing picking task
CN109710690B (en) Service driving calculation method and system

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
WW01 Invention patent application withdrawn after publication
WW01 Invention patent application withdrawn after publication

Application publication date: 20210129