CN103856462A - Method and system for managing sessions - Google Patents

Method and system for managing sessions Download PDF

Info

Publication number
CN103856462A
CN103856462A CN201210514591.5A CN201210514591A CN103856462A CN 103856462 A CN103856462 A CN 103856462A CN 201210514591 A CN201210514591 A CN 201210514591A CN 103856462 A CN103856462 A CN 103856462A
Authority
CN
China
Prior art keywords
time
session
node
out time
hash table
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.)
Granted
Application number
CN201210514591.5A
Other languages
Chinese (zh)
Other versions
CN103856462B (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.)
Anhui Dendrobium Fresh Network Technology Co.,Ltd.
Original Assignee
Shenzhen QVOD 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 QVOD Technology Co Ltd filed Critical Shenzhen QVOD Technology Co Ltd
Priority to CN201210514591.5A priority Critical patent/CN103856462B/en
Publication of CN103856462A publication Critical patent/CN103856462A/en
Application granted granted Critical
Publication of CN103856462B publication Critical patent/CN103856462B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Landscapes

  • Computer And Data Communications (AREA)

Abstract

The invention discloses a method and system for managing sessions. The method comprises the steps that a red-black tree and a hash table are respectively used for organizing the sessions in advance, each node of the red-black tree comprises a keyword and a node value, the keywords are timeout, and the node values are sets of all session names corresponding to the timeout; each item of the hash table comprises a key object and a value object, the key objects are the session names, and the value objects comprise the timeout and session information; the corresponding session names are searched for in the red-black tree with the timeout as the keywords, and the corresponding timeout and the corresponding session information are searched for in the hash table with the session names as the key objects. According to the technical scheme, the corresponding sessions can be searched for through the session names or the timeout, and therefore session detection efficiency is improved.

Description

A kind of management method of session and system
Technical field
The present invention relates to networking technology area, relate in particular to a kind of management method and system of session.
Background technology
In communication network, session refers to being connected and correlation behavior between the webserver and client, if session timeout is thought in the session of the webserver and client not request in certain time interval, then server can reclaim related resource, to increase operation rate.A session generally includes session name, time-out time and session information, and wherein, session name is used for a session of unique identification, generally using user ID or user name as session name; Time-out time generally uses unix timestamp, and unix timestamp is a kind of time representation mode, is defined as from 1970 01 month 00: 00: 00 on the 01st Greenwich Mean Time to present total number of seconds; Session information is preservation and session, data structure with user-dependent information, can be user's login time, last activity time, business datum etc.
At present, conventionally detect session by all sessions in traversal chained list, still, there is drawback in the detection mode of this traversal, if number of sessions is huge, detection efficiency can be lower, along with the quantity of the session of managing increases, the efficiency of this detection mode can be worse and worse; And this detection method cannot detect corresponding time-out time according to session name.
Summary of the invention
The technical problem to be solved in the present invention is, low and cannot detect according to session name the defect of corresponding time-out time for the above-mentioned efficiency of prior art, a kind of management method and system of session are provided, and efficiency is high and can detect corresponding time-out time according to session name.
The technical solution adopted for the present invention to solve the technical problems is: construct a kind of management method of session, comprising:
Use respectively in advance RBTree and Hash table to organize multiple sessions, wherein, each node of RBTree comprises keyword and nodal value, and described keyword is time-out time, and described nodal value is the set of the corresponding all session names of this time-out time; Each of Hash table comprises key object and value object, and described key object is session name, and described value object comprises time-out time and session information;
In described RBTree, taking time-out time as the corresponding session name of keyword search, and search corresponding time-out time and session information taking session name as key object in described Hash table.
In the management method of session of the present invention, in the time inserting session, carry out following steps:
In described Hash table:
Calculate corresponding cryptographic Hash according to the session name being inserted into, and calculate the relevant position in described Hash table according to calculated cryptographic Hash;
Insert the mapping of session name and time-out time, session information in described relevant position;
In described RBTree:
Search the corresponding node of described time-out time according to the time-out time being inserted into;
If find corresponding node, session name corresponding with described time-out time in described Hash table is added in the nodal value of described respective nodes;
If search less than corresponding node, create node taking described time-out time as keyword, and session name corresponding with described time-out time in described Hash table is added in the nodal value of created node.
In the management method of session of the present invention, in the time of the time-out time of amendment special session title, carry out following steps:
According to described special session title, in described Hash table, search corresponding time-out time and session information, and revise the corresponding time-out time of the title of special session described in Hash table;
In described RBTree, taking the time-out time that found as the corresponding node of keyword search, and in the nodal value of found node, delete described special session title;
In described RBTree, taking new time-out time as the corresponding node of keyword search, and in the time finding corresponding node, described special session title is added in the nodal value of this node; In the time searching less than corresponding node, create node taking described new time-out time as keyword, and described special session title is added in the nodal value of created node.
In the management method of session of the present invention, in the time of overtime detection, carry out following steps:
In described RBTree, from each node, find successively time-out time to be less than the node of current time, and return to the corresponding session name of found respective nodes.
The present invention also constructs a kind of management system of session, comprising:
Memory module, for using respectively RBTree and Hash table to organize multiple sessions in advance, wherein, each node of RBTree comprises keyword and nodal value, described keyword is time-out time, and described nodal value is the set of the corresponding all session names of this time-out time; Each of Hash table comprises key object and value object, and described key object is session name, and described value object comprises time-out time and session information;
Search module, for described RBTree taking time-out time as the corresponding session name of keyword search, and search corresponding time-out time and session information taking session name as key object in described Hash table.
In the management system of session of the present invention, also comprise: for inserting the insert module of session, and described insert module comprises:
The first plug-in unit, at described Hash table, calculates corresponding cryptographic Hash according to the session name being inserted into, and calculates the relevant position in described Hash table according to calculated cryptographic Hash; And, the mapping of inserting session name and time-out time, session information in described relevant position;
The second plug-in unit, for described RBTree, searches corresponding node according to the time-out time being inserted into; If find corresponding node, session name corresponding with described time-out time in described Hash table is added in the nodal value of described respective nodes; If search less than corresponding node, create node taking described time-out time as keyword, and session name corresponding with described time-out time in described Hash table is added in the nodal value of created node.
In the management system of session of the present invention, also comprise the modified module of the time-out time for revising special session title, and described modified module comprises:
The first amendment unit for according to described special session title, is searched corresponding time-out time and session information, and the corresponding time-out time of special session title described in described Hash table is revised as to new time-out time in described Hash table;
The second amendment unit, for described RBTree taking the time-out time that found as the corresponding node of keyword search, and in the nodal value of found node, delete described special session title; Then, in described RBTree, taking new time-out time as the corresponding node of keyword search, if find corresponding node, described special session title is added in the nodal value of this node; If search less than corresponding node, create node taking described new time-out time as keyword, and described special session title is added in the nodal value of created node.
In the management system of session of the present invention, also comprise:
Overtime detection module, for finding successively time-out time to be less than the node of current time from each node described RBTree, and returns to the corresponding session name of found respective nodes.
Implement technical scheme of the present invention, in the time carrying out session detection, can be taking time-out time as the corresponding session name of keyword search in RBTree, and, also can in Hash table, search corresponding time-out time and session information taking session name as key object, also can search corresponding session by any one in session name or time-out time, thereby improve the efficiency that session detects.
Brief description of the drawings
Below in conjunction with drawings and Examples, the invention will be further described, in accompanying drawing:
Fig. 1 is that the present invention uses RBTree to organize the schematic diagram of multiple session embodiment mono-;
Fig. 2 is that the present invention uses Hash table to organize the schematic diagram of multiple session embodiment mono-;
Fig. 3 is the flow chart of the management method embodiment mono-of session of the present invention;
Fig. 4 is the logic diagram of the management system embodiment mono-of session of the present invention;
Fig. 5 is the logic diagram of the management system embodiment bis-of session of the present invention.
Embodiment
Fig. 1 is that the present invention uses RBTree to organize the schematic diagram of multiple session embodiment mono-, on RBTree, comprise multiple nodes, each node comprises keyword and nodal value, wherein, keyword is time-out time, nodal value is the set of the corresponding all session names of this time-out time, for example, time-out time is that the nodal value (session name) of 1 node is se10, time-out time is that the nodal value of 2 node is se20, se21, time-out time is that the nodal value of 3 node is se30, se31, time-out time is that the nodal value of 4 node is se40, se41, time-out time is that the nodal value of 5 node is se50, se51, time-out time is that the nodal value of 6 node is se60, se61, se62, time-out time is that the nodal value of 7 node is se70, se71, the rest may be inferred.
Fig. 2 is the schematic diagram that the present invention uses Hash (hash) the multiple session embodiment mono-of table organization, and it is multiple that Hash table comprises, each comprises key object and value object, and described key object is session name, and described value object comprises time-out time and session information.For example, session name is that the value object of se10 is 1(time-out time) and data10(session information), session name is that the value object of se20 is 2 and data20, session name is that the value object of se21 is 2 and data21, session name is that the value object of se40 is 4 and data40, session name is that the value object of se41 is 4 and data41, and the value object that session name is se60 is 6 and data60, and the rest may be inferred.
Fig. 3 is the flow chart of the management method embodiment mono-of session of the present invention, and the management method of this session comprises:
S10. use respectively in advance RBTree and Hash table to organize multiple sessions, specifically see figures.1.and.2, wherein, each node of RBTree comprises keyword and nodal value, keyword is time-out time, and nodal value is the set of the corresponding all session names of this time-out time; Each of Hash table comprises key object and value object, and key object is session name, and value object comprises time-out time and session information;
S20. in RBTree taking time-out time as the corresponding session name of keyword search, and search corresponding time-out time and session information taking session name as key object in Hash table.
Implement the technical scheme of this embodiment, in the time carrying out session detection, can be taking time-out time as the corresponding session name of keyword search in RBTree, and, also can in Hash table, search corresponding time-out time and session information taking session name as key object, also can search corresponding session by any one in session name or time-out time, thereby improve the efficiency that session detects.
In another embodiment of the management method of session of the present invention, after step S10, if will insert session, comprise session name, time-out time and session information, carry out following steps:
In Hash table: calculate corresponding cryptographic Hash according to the session name being inserted into, and calculate the relevant position in Hash table according to calculated cryptographic Hash; Then, insert the mapping of session name and time-out time, session information in relevant position;
Secondly, in RBTree: search the corresponding node of time-out time according to the time-out time being inserted into; If find corresponding node, session name corresponding with time-out time in Hash table is added in the nodal value of respective nodes; If search less than corresponding node, create node taking time-out time as keyword, and session name corresponding with time-out time in Hash table is added in the nodal value of created node.
In another embodiment of the management method of session of the present invention, after step S10, if will revise the time-out time of special session title, carry out following steps:
According to special session title, in Hash table, search corresponding time-out time and session information, and revise the corresponding time-out time of special session title in Hash table;
In RBTree, taking the time-out time that found as the corresponding node of keyword search, and in the nodal value (session name set) of found node, delete special session title;
In RBTree, taking new time-out time as the corresponding node of keyword search, and in the time finding corresponding node, special session title is added in the nodal value of this node; In the time searching less than corresponding node, create node taking new time-out time as keyword, and special session title is added in the nodal value of created node.
In another embodiment of the management method of session of the present invention, while carrying out overtime detection, in RBTree, from each node, find successively time-out time to be less than the node of current time, and return to the corresponding session name of found respective nodes.
Fig. 4 is the logic diagram of the management system embodiment mono-of session of the present invention, comprise memory module 10 and search module 20, wherein, memory module 10 is for being used respectively in advance RBTree and Hash table to organize multiple sessions, wherein, each node of RBTree comprises keyword and nodal value, and keyword is time-out time, and nodal value is the set of the corresponding all session names of this time-out time; Each of Hash table comprises key object and value object, and key object is session name, and value object comprises time-out time and session information.Search module 20 for RBTree taking time-out time as the corresponding session name of keyword search, and search corresponding time-out time and session information taking session name as key object in Hash table.
Fig. 5 is the logic diagram of the management system embodiment bis-of session of the present invention, comprise memory module 10, search module 20, insert module 30, modified module 40 and overtime detection module 50, wherein, the memory module 10 of this embodiment, search module 20 and memory module 10 in the embodiment shown in Fig. 4, the logical construction of searching module 20 is identical, do not repeat at this, below insert module 30, modified module 40 and overtime detection module 50 are only described.
Insert module 30 is for inserting session, comprise session name, time-out time and session information, and, insert module 30 comprises the first plug-in unit and the second plug-in unit, wherein, the first plug-in unit, at Hash table, calculates corresponding cryptographic Hash according to the session name being inserted into, and calculates the relevant position in Hash table according to calculated cryptographic Hash; And, the mapping of inserting session name and time-out time, session information in relevant position; The second plug-in unit, for RBTree, is searched corresponding node according to the time-out time being inserted into; If find corresponding node, session name corresponding with time-out time in Hash table is added in the nodal value of respective nodes; If search less than corresponding node, create node taking time-out time as keyword, and session name corresponding with time-out time in Hash table is added in the nodal value of created node.
Modified module 40 is for revising the time-out time of special session title, and modified module comprises the first amendment unit and the second amendment unit, wherein, the first amendment unit is used for according to special session title, in Hash table, search corresponding time-out time and session information, and the corresponding time-out time of special session title in Hash table is revised as to new time-out time; The second amendment unit for RBTree taking the time-out time that found as the corresponding node of keyword search, and in the nodal value of found node, delete special session title; Then, in RBTree, taking new time-out time as the corresponding node of keyword search, if find corresponding node, special session title is added in the nodal value of this node; If search less than corresponding node, create node taking new time-out time as keyword, and special session title is added in the nodal value of created node.
Overtime detection module 50 is for finding successively time-out time to be less than the node of current time from each node RBTree, and returns to the corresponding session name of found respective nodes.
Conversation managing method of the present invention and system thereof, by the mode that adopts RBTree to be combined with Hash table, improved the efficiency that session detects, and makes the impact that not increased by number of sessions.For instance, suppose that time-out time is one hour, and each minute detected once overtime, the time that the present invention detects overtime use for the 1/60(of traversal method detection time be overtime sense cycle/time-out time, the degree that time is saved is relevant to sense cycle), greatly improve speed and the efficiency of overtime detection.Conversation managing method of the present invention and system have realized the amendment to time-out time simultaneously, have met the real needs of application layer.
The foregoing is only the preferred embodiments of the present invention, be not limited to the present invention, for a person skilled in the art, the present invention can have various modifications and variations.Within the spirit and principles in the present invention all, any amendment of doing, be equal to replacement, improvement etc., within all should being included in claim scope of the present invention.

Claims (8)

1. a management method for session, is characterized in that, comprising:
Use respectively in advance RBTree and Hash table to organize multiple sessions, wherein, each node of RBTree comprises keyword and nodal value, and described keyword is time-out time, and described nodal value is the set of the corresponding all session names of this time-out time; Each of Hash table comprises key object and value object, and described key object is session name, and described value object comprises time-out time and session information;
In described RBTree, taking time-out time as the corresponding session name of keyword search, and search corresponding time-out time and session information taking session name as key object in described Hash table.
2. the management method of session according to claim 1, is characterized in that, in the time inserting session, carries out following steps:
In described Hash table:
Calculate corresponding cryptographic Hash according to the session name being inserted into, and calculate the relevant position in described Hash table according to calculated cryptographic Hash;
Insert the mapping of session name and time-out time, session information in described relevant position;
In described RBTree:
Search the corresponding node of described time-out time according to the time-out time being inserted into;
If find corresponding node, session name corresponding with described time-out time in described Hash table is added in the nodal value of described respective nodes;
If search less than corresponding node, create node taking described time-out time as keyword, and session name corresponding with described time-out time in described Hash table is added in the nodal value of created node.
3. the management method of session according to claim 1, is characterized in that, in the time of the time-out time of amendment special session title, carries out following steps:
According to described special session title, in described Hash table, search corresponding time-out time and session information, and revise the corresponding time-out time of the title of special session described in Hash table;
In described RBTree, taking the time-out time that found as the corresponding node of keyword search, and in the nodal value of found node, delete described special session title;
In described RBTree, taking new time-out time as the corresponding node of keyword search, and in the time finding corresponding node, described special session title is added in the nodal value of this node; In the time searching less than corresponding node, create node taking described new time-out time as keyword, and described special session title is added in the nodal value of created node.
4. the management method of session according to claim 1, is characterized in that, in the time of overtime detection, carries out following steps:
In described RBTree, from each node, find successively time-out time to be less than the node of current time, and return to the corresponding session name of found respective nodes.
5. a management system for session, is characterized in that, comprising:
Memory module, for using respectively RBTree and Hash table to organize multiple sessions in advance, wherein, each node of RBTree comprises keyword and nodal value, described keyword is time-out time, and described nodal value is the set of the corresponding all session names of this time-out time; Each of Hash table comprises key object and value object, and described key object is session name, and described value object comprises time-out time and session information;
Search module, for described RBTree taking time-out time as the corresponding session name of keyword search, and search corresponding time-out time and session information taking session name as key object in described Hash table.
6. the management system of session according to claim 5, is characterized in that, also comprises: for inserting the insert module of session, and described insert module comprises:
The first plug-in unit, at described Hash table, calculates corresponding cryptographic Hash according to the session name being inserted into, and calculates the relevant position in described Hash table according to calculated cryptographic Hash; And, the mapping of inserting session name and time-out time, session information in described relevant position;
The second plug-in unit, for described RBTree, searches corresponding node according to the time-out time being inserted into; If find corresponding node, session name corresponding with described time-out time in described Hash table is added in the nodal value of described respective nodes; If search less than corresponding node, create node taking described time-out time as keyword, and session name corresponding with described time-out time in described Hash table is added in the nodal value of created node.
7. the management system of session according to claim 5, is characterized in that, also comprises the modified module of the time-out time for revising special session title, and described modified module comprises:
The first amendment unit for according to described special session title, is searched corresponding time-out time and session information, and the corresponding time-out time of special session title described in described Hash table is revised as to new time-out time in described Hash table;
The second amendment unit, for described RBTree taking the time-out time that found as the corresponding node of keyword search, and in the nodal value of found node, delete described special session title; Then, in described RBTree, taking new time-out time as the corresponding node of keyword search, if find corresponding node, described special session title is added in the nodal value of this node; If search less than corresponding node, create node taking described new time-out time as keyword, and described special session title is added in the nodal value of created node.
8. the management system of session according to claim 5, is characterized in that, also comprises:
Overtime detection module, for finding successively time-out time to be less than the node of current time from each node described RBTree, and returns to the corresponding session name of found respective nodes.
CN201210514591.5A 2012-12-05 2012-12-05 Method and system for managing sessions Active CN103856462B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201210514591.5A CN103856462B (en) 2012-12-05 2012-12-05 Method and system for managing sessions

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201210514591.5A CN103856462B (en) 2012-12-05 2012-12-05 Method and system for managing sessions

Publications (2)

Publication Number Publication Date
CN103856462A true CN103856462A (en) 2014-06-11
CN103856462B CN103856462B (en) 2017-02-15

Family

ID=50863682

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201210514591.5A Active CN103856462B (en) 2012-12-05 2012-12-05 Method and system for managing sessions

Country Status (1)

Country Link
CN (1) CN103856462B (en)

Cited By (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN105117471A (en) * 2015-08-31 2015-12-02 北京金山安全软件有限公司 Read-write operation method and device
CN107341243A (en) * 2017-07-06 2017-11-10 携程旅游网络技术(上海)有限公司 Billing cycle generation method and system based on section tree finding algorithm
CN107679148A (en) * 2017-09-26 2018-02-09 郑州云海信息技术有限公司 Session lookup method, device and the equipment of a kind of distributed file system
CN107911443A (en) * 2017-11-14 2018-04-13 北京小度信息科技有限公司 A kind of session information processing method, device, server and readable storage medium storing program for executing
CN108173930A (en) * 2017-12-26 2018-06-15 郑州云海信息技术有限公司 A kind of page time-out configuration warning device and method
CN109117432A (en) * 2017-06-22 2019-01-01 北京京东尚科信息技术有限公司 A kind of method and device obtaining data
CN109451020A (en) * 2018-11-06 2019-03-08 深圳前海微众银行股份有限公司 Overtime management method, equipment and computer readable storage medium

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20060053488A1 (en) * 2004-09-09 2006-03-09 Sinclair John W System, method and apparatus for use in monitoring or controlling internet access
CN101089810A (en) * 2006-06-13 2007-12-19 上海海加网络科技有限公司 Session cache method based on binary balance tree
CN101611399A (en) * 2007-02-16 2009-12-23 罗凡 Webpage, website modeling and generation
CN101795230A (en) * 2010-02-23 2010-08-04 西安交通大学 Network flow recovery method
CN101854603A (en) * 2010-06-09 2010-10-06 中兴通讯股份有限公司 Method and device for processing multimedia message service

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20060053488A1 (en) * 2004-09-09 2006-03-09 Sinclair John W System, method and apparatus for use in monitoring or controlling internet access
CN101089810A (en) * 2006-06-13 2007-12-19 上海海加网络科技有限公司 Session cache method based on binary balance tree
CN101611399A (en) * 2007-02-16 2009-12-23 罗凡 Webpage, website modeling and generation
CN101795230A (en) * 2010-02-23 2010-08-04 西安交通大学 Network flow recovery method
CN101854603A (en) * 2010-06-09 2010-10-06 中兴通讯股份有限公司 Method and device for processing multimedia message service

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
许宪成: "基于网络处理器的入侵检测系统设计与性能优化研究", 《中国博士学位论文全文数据库》 *

Cited By (9)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN105117471A (en) * 2015-08-31 2015-12-02 北京金山安全软件有限公司 Read-write operation method and device
CN109117432A (en) * 2017-06-22 2019-01-01 北京京东尚科信息技术有限公司 A kind of method and device obtaining data
CN107341243A (en) * 2017-07-06 2017-11-10 携程旅游网络技术(上海)有限公司 Billing cycle generation method and system based on section tree finding algorithm
CN107679148A (en) * 2017-09-26 2018-02-09 郑州云海信息技术有限公司 Session lookup method, device and the equipment of a kind of distributed file system
CN107911443A (en) * 2017-11-14 2018-04-13 北京小度信息科技有限公司 A kind of session information processing method, device, server and readable storage medium storing program for executing
CN107911443B (en) * 2017-11-14 2021-01-26 北京星选科技有限公司 Session information processing method, device, server and readable storage medium
CN108173930A (en) * 2017-12-26 2018-06-15 郑州云海信息技术有限公司 A kind of page time-out configuration warning device and method
CN109451020A (en) * 2018-11-06 2019-03-08 深圳前海微众银行股份有限公司 Overtime management method, equipment and computer readable storage medium
CN109451020B (en) * 2018-11-06 2021-07-06 深圳前海微众银行股份有限公司 Timeout management method, timeout management device, and computer-readable storage medium

Also Published As

Publication number Publication date
CN103856462B (en) 2017-02-15

Similar Documents

Publication Publication Date Title
CN103856462A (en) Method and system for managing sessions
CN102164186B (en) Method and system for realizing cloud search service
CN103703467A (en) Method and apparatus for storing data
TWI547814B (en) Data classification information storage methods and system structure
CN104699718A (en) Method and device for rapidly introducing business data
CN107145526B (en) Reverse-nearest neighbor query processing method for geographic social keywords under road network
CN110110006A (en) Data managing method and Related product
Zhao et al. Topic-centric and semantic-aware retrieval system for internet of things
CN102855309A (en) Information recommendation method and device based on user behavior associated analysis
CN102438278A (en) Load allocation method and device for mobile communication network
CN103823846A (en) Method for storing and querying big data on basis of graph theories
CN111258978A (en) Data storage method
CN110119396B (en) Data management method and related product
CN104063501A (en) Copy balancing method based HDFS
CN110134698A (en) Data managing method and Related product
CN102685222B (en) A kind of cloud SRM device for electric power system
KR101686919B1 (en) Method and apparatus for managing inference engine based on big data
Jiang et al. A generic ontology framework for indexing keyword search on massive graphs
Cappellari et al. A path-oriented rdf index for keyword search query processing
US20140108625A1 (en) System and method for configuration policy extraction
CN107291875B (en) Metadata organization management method and system based on metadata graph
CN111522918A (en) Data aggregation method and device, electronic equipment and computer readable storage medium
CN104462104B (en) Filter method and server
Aloisio et al. Towards exascale distributed data management
CN110110007A (en) Data managing method and Related product

Legal Events

Date Code Title Description
C06 Publication
PB01 Publication
C10 Entry into substantive examination
SE01 Entry into force of request for substantive examination
ASS Succession or assignment of patent right

Owner name: SHENZHEN TIANQU NETWORK TECHNOLOGY CO., LTD.

Free format text: FORMER OWNER: SHENZHEN KUAIBO TECHNOLOGY CO., LTD.

Effective date: 20140728

C41 Transfer of patent application or patent right or utility model
TA01 Transfer of patent application right

Effective date of registration: 20140728

Address after: 518057 Guangdong city of Shenzhen province Nanshan District south road six No. 6 Building 7 room 701 to Kelon

Applicant after: SHENZHEN TEEQEE NETWORK TECHNOLOGY Co.,Ltd.

Address before: 518057 Guangdong city of Shenzhen province Nanshan District Gao Xin Road No. 009 China Technology Development Institute Technology Park building three, 22 floor

Applicant before: SHENZHEN QVOD TECHNOLOGY Co.,Ltd.

ASS Succession or assignment of patent right

Owner name: SHENZHEN KUAIBO TECHNOLOGY CO., LTD.

Free format text: FORMER OWNER: SHENZHEN TIANQU NETWORK TECHNOLOGY CO., LTD.

Effective date: 20140902

C41 Transfer of patent application or patent right or utility model
TA01 Transfer of patent application right

Effective date of registration: 20140902

Address after: 518057 Guangdong city of Shenzhen province Nanshan District Gao Xin Road No. 009 China Technology Development Institute Technology Park building three, 22 floor

Applicant after: SHENZHEN QVOD TECHNOLOGY Co.,Ltd.

Address before: 518057 Guangdong city of Shenzhen province Nanshan District south road six No. 6 Building 7 room 701 to Kelon

Applicant before: SHENZHEN TEEQEE NETWORK TECHNOLOGY Co.,Ltd.

C14 Grant of patent or utility model
GR01 Patent grant
TR01 Transfer of patent right

Effective date of registration: 20200612

Address after: No.266 Chuangyan Road, Qilin science and Technology Innovation Park, Jiangning District, Nanjing City, Jiangsu Province

Patentee after: Nanjing Qianying Technology Development Co.,Ltd.

Address before: 518057 Guangdong city of Shenzhen province Nanshan District Gao Xin Road No. 009 Chinese Technology Development Institute Technology Park building three, 22 floor

Patentee before: SHENZHEN QVOD TECHNOLOGY Co.,Ltd.

TR01 Transfer of patent right
TR01 Transfer of patent right

Effective date of registration: 20201028

Address after: 233000 No.10, building 32, Zone 8, Guangcai market, bengshan District, Bengbu City, Anhui Province

Patentee after: Bengbu Shangwei Intellectual Property Operations Co.,Ltd.

Address before: No.266 Chuangyan Road, Qilin science and Technology Innovation Park, Jiangning District, Nanjing City, Jiangsu Province

Patentee before: Nanjing Qianying Technology Development Co.,Ltd.

TR01 Transfer of patent right
TR01 Transfer of patent right
TR01 Transfer of patent right

Effective date of registration: 20230113

Address after: Room 508, Floor 5, Dongfang Qiangli Complex Building, No. 1468, Tianjin Road, Baohe District, Hefei, Anhui Province, 230000

Patentee after: Anhui Dendrobium Fresh Network Technology Co.,Ltd.

Address before: 233000 No.10, building 32, Zone 8, Guangcai market, bengshan District, Bengbu City, Anhui Province

Patentee before: Bengbu Shangwei Intellectual Property Operations Co.,Ltd.