CN109327437B - Concurrent websocket service information processing method and server - Google Patents

Concurrent websocket service information processing method and server Download PDF

Info

Publication number
CN109327437B
CN109327437B CN201811144059.2A CN201811144059A CN109327437B CN 109327437 B CN109327437 B CN 109327437B CN 201811144059 A CN201811144059 A CN 201811144059A CN 109327437 B CN109327437 B CN 109327437B
Authority
CN
China
Prior art keywords
service
instruction
websocket
link
request
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.)
Active
Application number
CN201811144059.2A
Other languages
Chinese (zh)
Other versions
CN109327437A (en
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.)
Shenzhen Doyle Information Technology Co Ltd
Original Assignee
Shenzhen Doyle Information 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 Shenzhen Doyle Information Technology Co Ltd filed Critical Shenzhen Doyle Information Technology Co Ltd
Priority to CN201811144059.2A priority Critical patent/CN109327437B/en
Publication of CN109327437A publication Critical patent/CN109327437A/en
Application granted granted Critical
Publication of CN109327437B publication Critical patent/CN109327437B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L67/00Network arrangements or protocols for supporting network services or applications
    • H04L67/01Protocols
    • H04L67/02Protocols based on web technology, e.g. hypertext transfer protocol [HTTP]
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L69/00Network arrangements, protocols or services independent of the application payload and not provided for in the other groups of this subclass
    • H04L69/16Implementation or adaptation of Internet protocol [IP], of transmission control protocol [TCP] or of user datagram protocol [UDP]
    • H04L69/163In-band adaptation of TCP data exchange; In-band control procedures

Landscapes

  • Engineering & Computer Science (AREA)
  • Computer Networks & Wireless Communication (AREA)
  • Signal Processing (AREA)
  • Computer Security & Cryptography (AREA)
  • Computer And Data Communications (AREA)

Abstract

The invention belongs to the technical field of link service processing, and provides a concurrent websocket service information processing method and a server side. The method comprises the steps of obtaining a websocket link request and a service instruction, establishing a link according to a concurrent websocket link request, sequentially judging the legality of the websocket link request and the service instruction, filtering out illegal websocket link requests and service instructions, screening out legal service instructions, filtering out invalid service instructions by judging the validity of the legal service instructions, screening out effective service instructions, caching the effective service instructions and distributing the effective service instructions to corresponding service processes for operation, so that information blocking is effectively avoided, and the effect of improving the operation efficiency of the service processes is achieved.

Description

Concurrent websocket service information processing method and server
Technical Field
The invention belongs to the technical field of link service processing, and particularly relates to a concurrent websocket service information processing method and a server.
Background
The websocket protocol is a novel network protocol based on a TCP framework, and can realize timely communication between a request end and a server end.
Generally, a server establishes a link after responding to a link request sent by a request end, so as to establish a duplex communication channel for service information communication between the server and the request end, thereby achieving the purpose of timely communication.
Disclosure of Invention
Although the existing websocket protocol can realize duplex communication and achieve the purpose of timely communication, when a large number of request end link requests and service instructions are concurrently sent to the service end, the service end is blocked, the service process operation of the service end is seriously affected, and even the system runs. Research shows that the above defects are caused because the server is not provided with an intermediate process with a filtering and caching function, so that filtering, screening and caching distribution cannot be performed on the link requests and the service instructions, and a large number of concurrent link requests and service instructions bombard the service process of the server.
Therefore, the existing websocket protocol has the technical problem that filtering, screening and cache distribution cannot be performed on the link requests and the service instructions.
The invention aims to provide a concurrent websocket service information processing method to solve the technical problem that the existing websocket protocol cannot filter, screen and cache and distribute link requests and service instructions.
A concurrent websocket service information processing method comprises the following steps:
establishing a link according to a concurrent websocket link request, and acquiring a service instruction;
judging whether the websocket link request is legal or not; if the websocket link request is legal, keeping the link and judging whether the service instruction is legal or not;
if the service instruction is legal, judging whether the service instruction is effective or not;
and if the service instruction is valid, caching the service instruction to be distributed to a corresponding service process of the server for processing.
Preferably, the method for processing the concurrent websocket service information further includes:
judging whether the processing result needs to be fed back or not;
if so, the address of the request end is correspondingly inquired so as to feed back the processing result.
Specifically, the step of judging whether the websocket link request is legal includes:
intercepting a token character string in the websocket link request; the token character string comprises an encryption check code and an encryption character string;
decrypting the encrypted character string through the encrypted check code to generate a unique marking parameter of a request end;
checking the unique marking parameter of the request terminal through the encrypted check code; and if the checking result is legal, judging that the websocket link request is legal.
Preferably, the method for processing the concurrent websocket service information further includes:
decrypting the encrypted character string through the encrypted check code to generate a system time parameter;
judging whether the value of the system time parameter exceeds the preset request fault-tolerant time or not;
if not, a link is established.
Specifically, the step of determining whether the service instruction is legal includes:
intercepting an instruction time parameter, a random character string parameter, a specific instruction parameter and a signature parameter in the service instruction;
calculating the signature parameter determined by the instruction time parameter, the random character string parameter, the specific instruction parameter and the encryption check code through an MD5 algorithm to verify whether the signature of the request end is the same as the signature of the service end;
and if the service instruction is the same, judging that the service instruction is legal.
Specifically, the step of determining whether the service instruction is valid includes:
judging whether the fault-tolerant time of the service instruction exceeds the preset instruction fault-tolerant time or not;
and if so, judging that the service instruction is invalid.
Specifically, if the fault-tolerant time of the service instruction does not exceed the preset instruction fault-tolerant time, identifying whether the service instruction is a heartbeat instruction; if yes, the service instruction is judged to be invalid, the current link state is recorded, and the latest login state of the request terminal is updated.
Specifically, if the fault-tolerant time of the service instruction does not exceed the preset instruction fault-tolerant time, identifying whether the service instruction is an information instruction; if yes, the service instruction is judged to be effective, and the latest cached service instruction is obtained.
Specifically, if the fault-tolerant time of the service instruction does not exceed the preset instruction fault-tolerant time, identifying whether the service instruction is an operation instruction; if yes, the service instruction is judged to be effective, and the server side is informed to call according to the target address of the service instruction.
Another aspect of the present invention is to provide a server, including a memory and a processor, where the memory stores a computer program, and the computer program, when running in the processor, implements any one of the foregoing concurrent websocket service information processing methods.
Another object of the present invention is to provide a storage medium, which stores a computer program, and when the computer program runs in a processor, the computer program implements any one of the above-mentioned concurrent websocket service information processing methods.
Another aspect of the present invention is to provide a concurrent websocket service information processing apparatus, including:
the link establishing unit is used for establishing a link according to the concurrent websocket link request;
the acquisition unit is used for acquiring concurrent websocket link requests and service instructions;
the link judging unit is used for judging whether the websocket link request is legal or not;
the link keeping unit is used for keeping the link if the websocket link request is legal;
a service legality judging unit, configured to judge whether the service instruction is legal;
a service effectiveness judging unit, configured to judge whether the service instruction is valid if the service instruction is valid;
and the cache distributing unit is used for caching the service instruction to distribute the service instruction to a corresponding service process of the server for processing if the service instruction is valid.
Another aspect of the present invention is to provide a concurrent websocket service information processing system, including:
the request end is used for sending out a websocket link request and sending out a service instruction;
the server is configured with a link manager, a filtering filter, a cache distributor and a plurality of service processors;
the link manager establishes a link according to the concurrent websocket link request; the filter screener acquires a websocket link request and a service instruction;
the filter screener judges whether the websocket link request is legal or not, and if the websocket link request is legal, the filter screener informs a link manager to keep linking; and the filtering and screening device judges whether the service instruction is legal or not, if so, the filtering and screening device judges whether the service instruction is effective or not, if so, the filtering and screening device caches the legal and effective service instruction to the cache distributor, and the cache distributor distributes the legal and effective service instruction to a corresponding service processor of the service end for processing.
According to the concurrent websocket service information processing method provided by the invention, the websocket link request and the service instruction are obtained, the link is established according to the concurrent websocket link request, the legality of the websocket link request and the service instruction is sequentially judged, the illegal websocket link request and the service instruction are filtered out, the legal service instruction is screened out, the effectiveness of the legal service instruction is judged, the invalid service instruction is filtered out, the effective service instruction is screened out, and the effective service instruction is cached and distributed to the corresponding service process for operation, so that the information blocking is effectively avoided, and the effect of improving the operation efficiency of the service process is achieved.
Drawings
FIG. 1 is an architecture diagram of a concurrent websocket business information processing system, according to an embodiment;
fig. 2 is a flowchart of a method for processing concurrent websocket service information according to an embodiment;
FIG. 3 is a flowchart illustrating an improvement of the method for processing information of concurrent websocket services according to an embodiment;
FIG. 4 is a flowchart illustrating an improvement of the method for processing information of concurrent websocket services according to an embodiment;
FIG. 5 is a flowchart illustrating an improvement of the method for processing information of concurrent websocket services according to an embodiment;
FIG. 6 is a flowchart illustrating an improvement of the method for processing information of concurrent websocket services according to an embodiment;
fig. 7 is a flowchart illustrating an improvement of the method for processing information of concurrent websocket services according to an embodiment.
Detailed Description
In order to make the objects, technical solutions and advantages of the present disclosure more clearly understood, the present disclosure is further described in detail below with reference to the accompanying drawings and embodiments. It should be understood that the specific embodiments described herein are merely illustrative of the invention and are not intended to limit the invention.
Fig. 1 is an architecture diagram of a concurrent websocket service information processing system according to an embodiment, which illustrates a concurrent websocket service information processing system that can filter, and cache and distribute link requests and service instructions, and includes: a request end 01, a service end 02 and a transmission medium 03 connecting the request end 01 and the service end 02. The server 02 is configured with a link manager 020, a filter 021, a cache distributor 022 and a plurality of traffic processors 02x-02 y.
The request end 01 sends a websocket link request and a service instruction to the server end 02 through the transmission medium 03. The link manager 020 builds a link according to the concurrent websocket link request.
And the filter 021 acquires a concurrent service instruction and a concurrent websocket link request.
The filter 021 judges whether the websocket link request is legal, if so, the link manager 020 is informed of keeping the link, otherwise, the link manager 020 is informed of breaking the link.
The filter 021 judges whether the service instruction is legal, if so, judges whether the service instruction is valid, otherwise, only records the current link state, and updates the latest login state of the request terminal 01.
If the service instruction is valid, the valid and valid service instruction is cached to the cache distributor 022, otherwise, only the current link state is recorded, and the latest login state of the request terminal 01 is updated.
The cache dispatcher 022 dispatches valid and valid traffic instructions to the corresponding traffic processors 02x-02y of the server 02 for processing.
In this embodiment, after the link manager 020 establishes a link according to a websocket link request, the filter selector obtains a concurrent service instruction and a concurrent websocket link request, sequentially judges the legitimacy of the websocket link request and the service instruction, filters out an illegal websocket link request and service instruction, filters out a legal service instruction, filters out an invalid service instruction by judging the validity of the legal service instruction, filters out an effective service instruction, and caches the effective service instruction and distributes the effective service instruction to a corresponding service process for operation, so that information blocking is effectively avoided, the effect of improving the operation efficiency of the service processor 02x-02y is achieved, and the processing pertinence and the validity of the concurrent websocket service information processing system are improved.
In one embodiment, the link manager 020 is configured with a link establishing unit, a link maintaining unit, and a link breaking unit. The filter 021 is configured with an acquisition unit, a link judgment unit, a service validity judgment unit and a service effectiveness judgment unit. The cache distributor 022 is configured with a cache distribution unit.
The link establishing unit establishes a link according to the concurrent websocket link request. The acquisition unit acquires the concurrent service instruction and the websocket link request. The link judging unit judges whether the websocket link request is legal or not. If the websocket link request is legal, the link keeping unit keeps linking, otherwise, the link breaking unit breaks the link.
The service legality judging unit judges whether the service instruction is legal or not. If the service instruction is legal, the service effectiveness judging unit judges whether the service instruction is effective, otherwise, the server 02 only records the current link state and updates the latest login state of the request terminal 01.
If the service instruction is valid, the cache distribution unit caches the service instruction to distribute the service instruction to the corresponding service process of the server 02 for processing, otherwise, the server 02 only records the current link state and updates the latest login state of the request terminal 01.
Fig. 2 is a flowchart of a method for processing concurrent websocket service information according to an embodiment, which illustrates a method for processing concurrent websocket service information, where the method can filter, and cache and distribute link requests and service instructions, and the method includes:
step 10, establishing a link according to a concurrent websocket link request, and acquiring a service instruction;
step 20, judging whether the websocket link request is legal or not;
step 30, if the websocket link request is legal, keeping the link and judging whether the service instruction is legal or not;
step 40, if the websocket link request is illegal, disconnecting the link;
step 50, if the service instruction is legal, judging whether the service instruction is effective;
step 60, if the service instruction is illegal, recording the current link state and updating the latest login state of the request end;
step 70, if the service instruction is valid, caching the service instruction to distribute to a corresponding service process of the server for processing;
and step 80, if the service instruction is invalid, recording the current link state, and updating the latest login state of the request terminal.
In the embodiment, by obtaining a concurrent websocket link request and a service instruction, establishing a link according to the concurrent websocket link request, sequentially judging the legality of the websocket link request and the service instruction, filtering out an illegal websocket link request and the service instruction, screening out a legal service instruction, filtering out an invalid service instruction by judging the validity of the legal service instruction, screening out an effective service instruction, caching the effective service instruction and distributing the effective service instruction to a corresponding service process for operation, information blocking is effectively avoided, and the effect of improving the operation efficiency of the service process is achieved.
Specifically, the acquisition of concurrent websocket link requests and business instructions can be realized by building a netty service process. Wherein the netty service process may indicate a type of server software. Meanwhile, the judgment on the validity of the concurrent websocket link request and the service instruction and the judgment on the validity of the concurrent service instruction can also be realized through a netty service process. Meanwhile, the storage and forwarding of the legal and effective service instruction can be realized by building a redis service process. Wherein the redis service process may indicate a kind of server software.
It should be noted that, the link is established between the server and the requester, and the netty service process can exchange information with the requester. Meanwhile, the netty service process can exchange information with the redis service process, and the redis service process can exchange information with a plurality of business processes, so that filtering, screening, caching and distributing of concurrent websocket link requests and business instructions are realized.
It should also be noted that the service instructions include, but are not limited to, coupon pickup instructions.
Fig. 3 is an improved flowchart of a method for processing concurrent websocket service information according to an embodiment, and illustrates a method for processing concurrent websocket service information, where the method can feed back a processing result of a server, and includes:
step 90, judging whether the processing result needs to be fed back or not;
step A0, if necessary, corresponding to the query request terminal address to feed back the processing result.
In this embodiment, the processing result of the server is fed back to the request, so that the user experience can be improved.
In addition, the step of judging whether the processing result needs to be fed back and the corresponding inquiry request terminal address are needed, and the step of feeding back the processing result can be realized through the netty service process and the redis service process together.
For example, the netty service process can obtain a feedback instruction, and then call the processing result of the corresponding service process to feed back to the request terminal by inquiring the request terminal address cached in the redis service process.
Fig. 4 is an improved flowchart of a method for processing information of a concurrent websocket service according to an embodiment, and illustrates a preferred method for determining whether a websocket link request is legal, where the method includes:
step 200, intercepting a token character string in the websocket link request; the token character string comprises an encryption check code and an encryption character string;
step 201, decrypting the encrypted character string through the encrypted check code to generate a unique marking parameter of a request end;
step 202, checking the unique marking parameter of the request terminal through the encrypted check code; and if the checking result is legal, judging that the websocket link request is legal.
In this embodiment, the token string is an irregular string and may be generated by an existing rule. Wherein, different versions and different request terminals have different generation rules and different encryption check codes.
Fig. 5 is a flowchart of an embodiment of an improved method for processing concurrent websocket service information, and illustrates a preferred method for determining whether a websocket link request is valid, where the method includes:
step S0, decrypting the encrypted character string through the encrypted check code to generate a system time parameter;
step S1, judging whether the value of the system time parameter exceeds the preset request fault-tolerant time;
step S2, if not, establishing a link;
step S3, if the link time exceeds the predetermined time, the link timeout is notified.
In the embodiment, corresponding processing is selected according to the request time state of the websocket link request of the request end, so that the interaction efficiency and the utilization rate of the request end and the service end can be improved. For example, if the request time of the websocket link request does not exceed the preset request fault tolerance time (which may be set to 5 minutes), the link is established, and the concurrent websocket service information is processed in time. For another example, if the request time of the websocket link request exceeds the preset request fault tolerance time (which may be set to 5 minutes), the request end is notified, so that the request end can re-initiate the request in time.
Fig. 6 is a flowchart of an improved method for processing concurrent websocket service information according to an embodiment, and illustrates a preferred method for determining whether a service instruction is legal, where the method includes:
step 203, intercepting an instruction time parameter, a random character string parameter, a specific instruction parameter and a signature parameter in a service instruction;
step 204, calculating a signature parameter determined by the instruction time parameter, the random character string parameter, the specific instruction parameter and the encryption check code through an MD5 algorithm to verify whether the signature of the request end is the same as the signature of the service end;
and step 205, if the two are the same, judging that the service instruction is legal.
In this embodiment, the encrypted check code may be obtained through a token string in the websocket link request.
In addition, MD5 (Message-Digest Algorithm 5: information-Digest Algorithm) in step 204 is an existing Algorithm, and this embodiment can achieve the technical effect of verifying whether the signature of the requesting end is the same as the signature of the serving end.
Fig. 7 is a flowchart of an embodiment of an improved method for processing concurrent websocket service information, and illustrates a preferred method for determining whether a service instruction is valid, where the method includes:
step 400, acquiring the fault tolerance time of the service instruction;
step 401, judging whether the fault-tolerant time of a service instruction exceeds the preset instruction fault-tolerant time;
step 402, if the preset instruction fault-tolerant time is exceeded, determining that the service instruction is invalid;
step 403, if not, identifying whether the service instruction is a heartbeat instruction;
step 404, if yes, determining that the service instruction is invalid, recording the current link state, and updating the latest login state of the request terminal;
step 405, if the preset instruction fault-tolerant time is not exceeded, identifying whether the service instruction is an information instruction;
and 406, if yes, judging that the service instruction is effective, and acquiring the latest cached service instruction.
Step 407, if the preset instruction fault-tolerant time is not exceeded, identifying whether the service instruction is an operation instruction;
and step 408, if yes, judging that the service instruction is effective, and notifying the server to call according to the target address of the service instruction.
In this embodiment, the legal service instructions are further filtered and screened, and the service instructions exceeding the preset instruction fault tolerance time (for example, 5 minutes) can be filtered out, so that the processing of invalid service instructions is further reduced, and the technical effects of saving processing resources and improving processing efficiency are achieved.
Furthermore, the effective service instruction is further identified, and other instructions except the operation instruction, such as a heartbeat instruction and an information instruction, are not called by the server, so that the technical effects of saving processing resources and improving processing efficiency can be further achieved.
The present invention provides a storage medium storing a computer program, which when executed in a processor implements any one of the above embodiments of the concurrent websocket service information processing method, in addition to the above embodiments of the present invention, which teach those skilled in the art to implement.
According to the concurrent websocket service information processing method provided by the invention, the websocket link request and the service instruction are obtained, the link is established according to the concurrent websocket link request, the legality of the websocket link request and the service instruction is sequentially judged, the illegal websocket link request and the service instruction are filtered out, the legal service instruction is screened out, the effectiveness of the legal service instruction is judged, the invalid service instruction is filtered out, the effective service instruction is screened out, and the effective service instruction is cached and distributed to the corresponding service process for operation, so that the information blocking is effectively avoided, and the effect of improving the operation efficiency of the service process is achieved.
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 and improvements made within the spirit and principle of the present invention are intended to be included within the scope of the present invention.

Claims (10)

1. A concurrent websocket service information processing method is characterized by comprising the following steps:
establishing a link according to the concurrent websocket link request, and acquiring a service instruction through a netty service process;
judging whether the websocket link request is legal or not; if the websocket link request is legal, keeping the link and judging whether the service instruction is legal or not;
if the business instruction is legal, judging whether the business instruction is effective or not through a netty service process;
and if the service instruction is valid, caching the service instruction to be distributed to a corresponding service process of the server for processing.
2. The method of claim 1, further comprising:
judging whether the processing result needs to be fed back or not;
if so, the address of the request end is correspondingly inquired so as to feed back the processing result.
3. The method of claim 2, wherein the step of determining whether the websocket link request is legitimate comprises:
intercepting a token character string in the websocket link request; the token character string comprises an encryption check code and an encryption character string;
decrypting the encrypted character string through the encrypted check code to generate a unique marking parameter of a request end;
checking the unique marking parameter of the request terminal through the encrypted check code; and if the checking result is legal, judging that the websocket link request is legal.
4. The method of claim 3, further comprising:
decrypting the encrypted character string through the encrypted check code to generate a system time stamp parameter;
judging whether the value of the system timestamp parameter exceeds preset request fault-tolerant time or not;
if not, a link is established.
5. The method of claim 3, wherein said step of determining whether said service directive is legitimate comprises:
intercepting an instruction time parameter, a random character string parameter, a specific instruction parameter and a signature parameter in the service instruction;
calculating the signature parameter determined by the instruction time parameter, the random character string parameter, the specific instruction parameter and the encryption check code through an MD5 algorithm to verify whether the signature of the request end is the same as the signature of the service end;
and if the service instruction is the same, judging that the service instruction is legal.
6. The method of claim 5, wherein said step of determining whether said service directive is valid comprises:
judging whether the fault-tolerant time of the service instruction exceeds the preset instruction fault-tolerant time or not;
and if so, judging that the service instruction is invalid.
7. The method of claim 6, wherein if the fault-tolerant time of the service command does not exceed a preset command fault-tolerant time, identifying whether the service command is a heartbeat command; if yes, the service instruction is judged to be invalid, the current link state is recorded, and the latest login state of the request terminal is updated.
8. The method of claim 6, wherein if the fault-tolerant time of the service command does not exceed a preset command fault-tolerant time, identifying whether the service command is an information command; if yes, the service instruction is judged to be effective, and the latest cached service instruction is obtained.
9. The method of claim 6, wherein if the fault-tolerant time of the service instruction does not exceed a preset instruction fault-tolerant time, identifying whether the service instruction is an operation instruction; if yes, the service instruction is judged to be effective, and the server side is informed to call according to the target address of the service instruction.
10. A server comprising a memory and a processor, the memory storing a computer program, wherein the computer program when executed in the processor implements the method of any one of claims 1 to 9.
CN201811144059.2A 2018-09-29 2018-09-29 Concurrent websocket service information processing method and server Active CN109327437B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201811144059.2A CN109327437B (en) 2018-09-29 2018-09-29 Concurrent websocket service information processing method and server

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201811144059.2A CN109327437B (en) 2018-09-29 2018-09-29 Concurrent websocket service information processing method and server

Publications (2)

Publication Number Publication Date
CN109327437A CN109327437A (en) 2019-02-12
CN109327437B true CN109327437B (en) 2020-02-21

Family

ID=65265947

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201811144059.2A Active CN109327437B (en) 2018-09-29 2018-09-29 Concurrent websocket service information processing method and server

Country Status (1)

Country Link
CN (1) CN109327437B (en)

Families Citing this family (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN109976904A (en) * 2019-02-25 2019-07-05 贵州电网有限责任公司 Processing method of the Redis memory management in acquisition system
CN111967789A (en) * 2020-08-27 2020-11-20 广东电网有限责任公司东莞供电局 Debugging system is transferred in distribution automation terminal warehouse debugging

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103401942A (en) * 2013-08-12 2013-11-20 网宿科技股份有限公司 Method and system for achieving web application acceleration of content distribution network node
CN106470190A (en) * 2015-08-19 2017-03-01 中兴通讯股份有限公司 A kind of Web real-time communication platform authentication cut-in method and device
CN108390881A (en) * 2018-02-27 2018-08-10 北京焦点新干线信息技术有限公司 A kind of distribution high concurrent real-time messages method for pushing and system

Family Cites Families (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101247360A (en) * 2008-03-25 2008-08-20 宇龙计算机通信科技(深圳)有限公司 Information display method, main unit terminal and sub-unit terminal
CN105959117B (en) * 2016-07-19 2019-03-29 安徽大学 Cuckoo filter-based vehicle-mounted ad hoc network security authentication method
US10127420B2 (en) * 2016-08-04 2018-11-13 Industrial Technology Research Institute Location based situation awareness system and method thereof

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103401942A (en) * 2013-08-12 2013-11-20 网宿科技股份有限公司 Method and system for achieving web application acceleration of content distribution network node
CN106470190A (en) * 2015-08-19 2017-03-01 中兴通讯股份有限公司 A kind of Web real-time communication platform authentication cut-in method and device
CN108390881A (en) * 2018-02-27 2018-08-10 北京焦点新干线信息技术有限公司 A kind of distribution high concurrent real-time messages method for pushing and system

Non-Patent Citations (2)

* Cited by examiner, † Cited by third party
Title
"duubo高可用:服务降级";Jeff.Sheng;《https://blog.csdn.net/shengqianfeng/article/details/82320883》;20180903;第1页 *
"容错";神奇的天鹿;《https://www.jianshu.com/p/6ce1ae03ed76》;20161109;第1-3页 *

Also Published As

Publication number Publication date
CN109327437A (en) 2019-02-12

Similar Documents

Publication Publication Date Title
US11997111B1 (en) Attribute-controlled malware detection
US11863581B1 (en) Subscription-based malware detection
CN107395767B (en) Message pushing system and method based on long connection
CN112367321B (en) Method for quickly constructing service call and middle station API gateway
CN102982141B (en) A kind of method and device realizing distributed data base agency
US20150103688A1 (en) Packet receiving method, deep packet inspection device and system
CN102752326A (en) Method, client, server and system for processing data in file downloading
WO2016186769A1 (en) Customized record handling in a content delivery network
CN102769549A (en) Network security monitoring method and device
CN109327437B (en) Concurrent websocket service information processing method and server
CN102932391A (en) Method and device for processing data in peer to server/peer (P2SP) system, and P2SP system
CN112187903B (en) Message pushing method and device and message service system
US20070265976A1 (en) License distribution in a packet data network
CN114513326B (en) Method and system for realizing communication audit based on dynamic proxy
US20180081746A1 (en) Application message processing system, method, and application device
CN112422705A (en) Server, data processing method and medium
CN115118504B (en) Knowledge base updating method and device, electronic equipment and storage medium
US20190036793A1 (en) Network service implementation method, service controller, and communications system
CN115051978A (en) Equipment monitoring implementation method and system
CN112363887A (en) Distributed application monitoring method and device and storage medium
CN111901366B (en) Data pushing method, device, equipment and storage medium
CN107995264B (en) CDN service verification code distribution method and system based on message queue
CN114363204A (en) Request monitoring method, network device and storage medium
CN106790150B (en) Session maintaining method and device
CN107846480B (en) NXDOMAIN response packet processing method and device

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
GR01 Patent grant
GR01 Patent grant