CN113504930B - Determination method, terminal equipment and medium for newly added object - Google Patents

Determination method, terminal equipment and medium for newly added object Download PDF

Info

Publication number
CN113504930B
CN113504930B CN202110858791.1A CN202110858791A CN113504930B CN 113504930 B CN113504930 B CN 113504930B CN 202110858791 A CN202110858791 A CN 202110858791A CN 113504930 B CN113504930 B CN 113504930B
Authority
CN
China
Prior art keywords
data set
address
determining
objects
sum
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
CN202110858791.1A
Other languages
Chinese (zh)
Other versions
CN113504930A (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.)
China Mobile Communications Group Co Ltd
China Mobile Hangzhou Information Technology Co Ltd
Original Assignee
China Mobile Communications Group Co Ltd
China Mobile Hangzhou 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 China Mobile Communications Group Co Ltd, China Mobile Hangzhou Information Technology Co Ltd filed Critical China Mobile Communications Group Co Ltd
Priority to CN202110858791.1A priority Critical patent/CN113504930B/en
Publication of CN113504930A publication Critical patent/CN113504930A/en
Application granted granted Critical
Publication of CN113504930B publication Critical patent/CN113504930B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/60Software deployment
    • G06F8/65Updates
    • 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/22Indexing; Data structures therefor; Storage structures
    • G06F16/2228Indexing structures
    • 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/27Replication, distribution or synchronisation of data between databases or within a distributed database system; Distributed database system architectures therefor
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/70Software maintenance or management
    • G06F8/71Version control; Configuration management

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • General Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Databases & Information Systems (AREA)
  • Computer Security & Cryptography (AREA)
  • Data Mining & Analysis (AREA)
  • Computing Systems (AREA)
  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)

Abstract

The invention discloses a method for determining a new object, terminal equipment and a computer-readable storage medium, wherein the method for determining the new object comprises the following steps: acquiring a first address sum of objects in a first data set and a second address sum of objects in a second data set; determining a difference between the first address sum and the second address sum; and determining a new object of the first data set relative to the second data set according to the difference value. The invention aims to overcome the defect that the efficiency of determining the newly-added object is lower when the newly-added object between two data sets is determined in a double-layer nested judgment loop mode in the related art, and achieve the effect of improving the determination efficiency of the newly-added object.

Description

Determination method, terminal equipment and medium for newly added object
Technical Field
The present invention relates to the field of software technologies, and in particular, to a method for determining a new object, a terminal device, and a computer readable storage medium.
Background
In programming, there is a need for fast traversal of newly added objects in many application scenarios. For example: in the protection strategy of data synchronization among the platforms, when the data has differences, newly added objects are quickly traversed to synchronize, and the data consistency among the platforms is kept.
In the related art, in order to achieve the purpose of generating a new object by a variable, a classical FOR loop traversal algorithm is generally adopted, that is, each data in one database is compared with each data in another database once, so as to determine which specific data is the new object. This results in traversing the same element multiple times during the process of determining the newly added object, resulting in less efficient determination of the newly added object.
The foregoing is provided merely for the purpose of facilitating understanding of the technical solutions of the present invention and is not intended to represent an admission that the foregoing is prior art.
Disclosure of Invention
The invention mainly aims to provide a method for determining a new object, terminal equipment and a computer readable storage medium, aiming to achieve the effect of improving the efficiency of determining the new object.
In order to achieve the above object, the present invention provides a method for determining a new object, which is applied to a configuration terminal, and the method for determining a new object includes:
the method for determining the newly added object comprises the following steps:
acquiring a first address sum of objects in a first data set and a second address sum of objects in a second data set;
determining a difference between the first address sum and the second address sum;
and determining a new object of the first data set relative to the second data set according to the difference value.
Optionally, the step of obtaining a first address sum of the objects in the first dataset and a second address sum of the objects in the second dataset comprises:
traversing the first data set through single-layer FOR circulation, obtaining a first storage address of each object in the first data set, and determining a first address sum according to the first storage address; and
and traversing the second data set through single-layer FOR circulation, acquiring a second storage address of each object in the second data set, and determining a second address sum according to the second storage address.
Optionally, the step of determining the new object of the first data set relative to the second data set according to the difference value includes:
determining a target storage address corresponding to the newly added object according to the difference value;
and determining the newly added object according to the target storage address.
Optionally, the step of determining the new object according to the target storage address includes:
and traversing the first data set through single-layer FOR circulation, determining an object corresponding to the target storage address, and taking the object corresponding to the target storage address as the newly added object.
Optionally, after the step of determining the new object of the first data set relative to the second data set according to the difference value, the method further includes:
synchronizing the newly added object to the second data set to keep the first data set and the second data set synchronized.
Optionally, after the step of determining the new object of the first data set relative to the second data set according to the difference value, the method further includes:
displaying the newly added object through an interactive interface, and receiving a modification action of the newly added object through the interactive interface;
modifying the newly added object displayed in the interactive interface according to the modification action;
and updating the first data set according to the modified newly-added object.
Optionally, after the step of determining the difference between the first address sum and the second address sum, the method further comprises:
and when the difference value is 0, outputting prompt information that the objects in the first data set are the same as the objects in the second data set.
In addition, in order to achieve the above object, the present invention also provides a terminal device including a memory, a processor, and a determination program of a new object stored on the memory and executable on the processor, the determination program of the new object implementing the steps of the determination method of the new object as described above when executed by the processor.
In addition, to achieve the above object, the present invention also provides a terminal device including:
an acquisition module for acquiring a first address sum of objects in a first dataset and a second address sum of objects in a second dataset;
a calculation module for determining a difference between the first address sum and the second address sum;
and the determining module is used for determining a new object of the first data set relative to the second data set according to the difference value.
In addition, in order to achieve the above object, the present invention also provides a computer-readable storage medium having stored thereon a determination program of a new object, which when executed by a processor, implements the steps of the determination method of a new object as described above.
The embodiment of the invention provides a method for determining a new object, terminal equipment and a computer readable storage medium, wherein a first address sum of objects in a first data set and a second address sum of objects in a second data set are acquired, then a difference value between the first address sum and the second address sum is determined, and further the new object of the first data set relative to the second data set is determined according to the difference value. Because of the method FOR determining the newly added object, when the newly added object is determined, the first address sum and the second address sum can be obtained only through single-layer FOR circulation, and then the newly added object is directly determined through the first address sum and the second address sum. It can be appreciated that in the process of determining the newly added object by the double-layer nested FOR loop, the time complexity is T due to double-layer nesting 2 In the scheme provided by the invention, the determination of the newly added object can be realized through single-layer FOR circulation, so that the time complexity is T. Therefore, compared with the scheme of determining the newly added object by the double-layer nested FOR circulation described in the related technology, the time complexity of the scheme provided by the invention is obviously reduced, and the more time is saved when the scheme is applied in a more complex environment. Therefore, the method for determining the newly added object achievesThe effect of improving the determination efficiency of the newly added object is improved.
Drawings
FIG. 1 is a schematic diagram of a terminal structure of a hardware operating environment according to an embodiment of the present invention;
FIG. 2 is a flowchart illustrating an embodiment of a method for determining an added object according to the present invention;
FIG. 3 is a schematic diagram of a dataset according to an embodiment of the present invention;
FIG. 4 is a flowchart illustrating another embodiment of a method for determining an added object according to the present invention;
fig. 5 is a schematic diagram of a terminal device according to an embodiment of the present invention.
The achievement of the objects, functional features and advantages of the present invention will be further described with reference to the accompanying drawings, in conjunction with the embodiments.
Detailed Description
It should be understood that the specific embodiments described herein are for purposes of illustration only and are not intended to limit the scope of the invention.
As shown in fig. 1, fig. 1 is a schematic diagram of a terminal structure of a hardware running environment according to an embodiment of the present invention.
As shown in fig. 1, fig. 1 is a schematic diagram of a terminal structure of a hardware running environment according to an embodiment of the present invention.
As shown in fig. 1, the terminal may include: a processor 1001, such as a CPU, a network interface 1004, a user interface 1003, a memory 1005, a communication bus 1002. Wherein the communication bus 1002 is used to enable connected communication between these components. The user interface 1003 may include a Display screen (Display), an input unit such as a Keyboard (Keyboard), a mouse, etc., and the optional user interface 1003 may further include a standard wired interface, a wireless interface. The network interface 1004 may optionally include a standard wired interface, a wireless interface (e.g., WI-FI interface). The memory 1005 may be a high-speed RAM memory or a stable memory (non-volatile memory), such as a disk memory. The memory 1005 may also optionally be a storage device separate from the processor 1001 described above.
It will be appreciated by those skilled in the art that the terminal structure shown in fig. 1 is not limiting of the terminal and may include more or fewer components than shown, or may combine certain components, or a different arrangement of components.
As shown in fig. 1, an operating system, a network communication module, a user interface module, and a determination program of a new object may be included in the memory 1005 as one type of computer storage medium.
In the terminal shown in fig. 1, the processor 1001 may be configured to call a determination program of a new object stored in the memory 1005, and perform the following operations:
acquiring a first address sum of objects in a first data set and a second address sum of objects in a second data set;
determining a difference between the first address sum and the second address sum;
and determining a new object of the first data set relative to the second data set according to the difference value.
Further, the processor 1001 may be further configured to call a determination program of a new object stored in the memory 1005, and perform the following operations:
traversing the first data set through single-layer FOR circulation, obtaining a first storage address of each object in the first data set, and determining a first address sum according to the first storage address; and
and traversing the second data set through single-layer FOR circulation, acquiring a second storage address of each object in the second data set, and determining a second address sum according to the second storage address.
Further, the processor 1001 may be further configured to call a determination program of a new object stored in the memory 1005, and perform the following operations:
determining a target storage address corresponding to the newly added object according to the difference value;
and determining the newly added object according to the target storage address.
Further, the processor 1001 may be further configured to call a determination program of a new object stored in the memory 1005, and perform the following operations:
and traversing the first data set through single-layer FOR circulation, determining an object corresponding to the target storage address, and taking the object corresponding to the target storage address as the newly added object.
Further, the processor 1001 may be further configured to call a determination program of a new object stored in the memory 1005, and perform the following operations:
synchronizing the newly added object to the second data set to keep the first data set and the second data set synchronized.
Further, the processor 1001 may be further configured to call a determination program of a new object stored in the memory 1005, and perform the following operations:
displaying the newly added object through an interactive interface, and receiving a modification action of the newly added object through the interactive interface;
modifying the newly added object displayed in the interactive interface according to the modification action;
and updating the first data set according to the modified newly-added object.
Further, the processor 1001 may be further configured to call a determination program of a new object stored in the memory 1005, and perform the following operations:
and when the difference value is 0, outputting prompt information that the objects in the first data set are the same as the objects in the second data set.
In programming, there is a need for fast traversal of newly added objects in many application scenarios. For example: in the protection strategy of data synchronization among the platforms, when the data has differences, newly added objects are quickly traversed to synchronize, and the data consistency among the platforms is kept.
In the related art, in order to achieve the purpose of generating new objects by using variables, a classical FOR loop traversal algorithm is generally adopted. For example, when object a, object B, object C, and object D are included in data set 1. Data set 1 includes object a, object B, and object C. To determine the new object in dataset 1 relative to dataset 2, a first traversal of dataset 2 based on object A is required to determine if object A is present in dataset 2. A second traversal of dataset 2 is then performed based on object B, determining whether object B is present in dataset 2. A third traversal of dataset 2 is then performed based on object C, determining whether object C is present in dataset 2. Finally, a fourth traversal of dataset 2 is performed based on object D, determining whether object D is present in dataset 2. Then after four traversals, it can be determined that the newly added object of the data set 1 relative to the data set 2 is the object D. It can be seen that, based on the manner given in the related art, each data in one database needs to be compared with each data in another database once to determine which specific data is the newly added data (newly added object). This results in traversing the same element multiple times during the process of determining the newly added object, resulting in less efficient determination of the newly added object.
In order to improve the efficiency of determining a new object, the embodiment of the invention provides a method for determining the new object. According to the method for determining the newly-added object, which is provided by the embodiment of the invention, the storage address of the newly-added object is rapidly determined through the address sum of the storage addresses of the objects in the two data sets, so that the traversing times are reduced, and the determination efficiency of the newly-added object is improved.
The method for determining the newly added object according to the present invention is further explained by specific embodiments.
In an embodiment, referring to fig. 2, the method for determining the new object includes the following steps:
step S10, acquiring a first address sum of objects in a first data set and a second address sum of objects in a second data set;
step S20, determining a difference value between the first address sum and the second address sum;
step S30, determining a new object of the first data set relative to the second data set according to the difference value.
In this embodiment, when the current requirement determines a new object of the first data set relative to the second data set, the first data set may be traversed through a single-layer FOR loop, so as to obtain the first storage address of each object in the first data set. And traversing the second data set through the single-layer cyclic FOR, and acquiring a second storage address of each object in the second data set. And determining a first address sum of the objects in the first data set and a second address sum of the objects in the second data set according to the acquired first storage address and second storage address. And determining a difference between the first address sum and the second address sum.
It should be noted that, when the storage address of the object in the first data set and the storage address in the second data set are acquired, the traversal may be performed in other manners besides the single-layer round-robin FOR traversal. The solution proposed in this embodiment is only for illustration.
For example, referring to fig. 3, in a first dataset, an object (object) a is included, whose storage address is 0x01; an object (object) b whose storage address is 0x06; an object (object) c whose storage address is 0x07; and an object (object) d whose storage address is 0x09. Thus, object (object) a, object (object) b, object (object) c, and a storage address corresponding to object (object) d may be obtained by looping through the first dataset with a single layer FOR. The first address sum is then calculated. Wherein, the first address and S2 corresponding to the first data set are:
S1=0x01+0x06+0x07+0x09
in the second data set, an object (object) a is included, whose storage address is 0x01; an object (object) b whose storage address is 0x06; and an object (object) c whose storage address is 0x07. Object (object) a, object (object) b and object (object) c corresponding second storage addresses in the second data set are obtained by looping through the second data set with a single layer FOR. A second address sum corresponding to the second data set is then calculated. Wherein, the second address and S2 corresponding to the second data set are:
S1=0x01+0x06+0x07
after determining the first and second address sums S1 and S2, a difference between the first and second address sums S1 and S2 may be calculated. Namely:
S1-S2=(0x01+0x06+0x07+0x09)-(0x01+0x06+0x07)=0x09
according to the above, after determining the difference, the difference is the storage address corresponding to the newly added object. Therefore, the target storage address corresponding to the new object may be determined according to the difference value, and then the new object may be determined according to the target storage address.
FOR example, after determining the target storage address, the first data set may be traversed through a single-layer FOR loop, to obtain an object corresponding to the target storage address, and use the object corresponding to the target storage address as the new object.
Alternatively, in some application scenarios, after an object is deleted from a data set, the deleted object may also be determined based on the method for determining a new object according to the present embodiment. For example, in the application scenario, the data set before deletion may be the first data set, and the data set after deletion may be the second data set, so that the new object is the deleted object.
In this embodiment, a first address sum of objects in a first dataset and a second address sum of objects in a second dataset are obtained, then a difference between the first address sum and the second address sum is determined, and further a new object of the first dataset relative to the second dataset is determined according to the difference. Because of the method FOR determining the newly added object provided in the embodiment, when determining the newly added object, the first address sum and the second address sum can be obtained only through single-layer FOR circulation, and then the newly added object is directly determined through the first address sum and the second address sum. It can be appreciated that in the process of determining the newly added object by the double-layer nested FOR loop, the time complexity is T due to double-layer nesting 2 In the solution proposed in this embodiment, the determination of the newly added object can be implemented by a single-layer FOR loop, so that the time complexity is T. Therefore, compared with the scheme of determining newly added objects by double-layer nested FOR loops described in the related art, the scheme proposed in the present embodiment has significantly reduced time complexity, and is more complex in an environmentThe more time is saved when applied. Therefore, the method for determining the newly added object provided by the embodiment of the invention achieves the effect of improving the determination efficiency of the newly added object.
Referring to fig. 4, in another embodiment of the present invention, after the step S30, the method further includes:
step S40, synchronizing the new object to the second data set, so as to keep the first data set and the second data set synchronized.
In this embodiment, after the new object of the first data set relative to the second data set is currently determined, the new object may be copied to the second data set, so that the data in the second data set is synchronized with the data in the first data set.
In an application scenario, the first data set may be a first version of the data set corresponding to application a, and the second data set may be a second version of the data set corresponding to application a. Wherein the first version is an upgraded version of the second version. Therefore, the new object corresponding to the updated version can be determined in the data set corresponding to the updated version, and then the new object is synchronized with the new object corresponding to the version before the update, so that the purpose of updating the application A is achieved. Under the application scene, the effect of improving the application upgrading efficiency is achieved.
Optionally, in some application scenarios, there is a need for modification of the newly added object. For example, when the data set corresponding to the application a before the update is the second data set and the data set corresponding to the application a after the update is the first data set, if the application before the update does not have the BUG, the application a after the update exists. Meaning that the BUG appears in the newly added object. Therefore, the step S10 to the step S30 may be performed to determine a new object, then display the new object through the interactive interface, and receive a modification action on the new object through the interactive interface, so as to modify the new object displayed in the interactive interface according to the modification action, and update the first dataset after the modification of the new object. This achieves the effect of improving the efficiency of modifying the application of the BUG.
Optionally, after determining the difference between the first address sum and the second address sum, when the difference is 0, it may be determined that the first data set is synchronous with the data in the second data set, i.e. there is no new object in the first data set relative to the second data set. Thus, the same hint information can be output for the objects in the first data set as for the objects in the second data set. This achieves the effect of quickly determining whether the data sets are synchronized.
In addition, the embodiment of the invention also provides a terminal device, which comprises: the device comprises a memory, a processor and a determination program of a new object, wherein the determination program of the new object is stored in the memory and can be run on the processor, and the determination program of the new object realizes the steps of the determination method of the new object according to each embodiment.
In addition, referring to fig. 5, an embodiment of the present invention further proposes a terminal device 100, where the terminal device 100 includes:
an obtaining module 101, configured to obtain a first address sum of objects in a first data set and a second address sum of objects in a second data set;
a calculation module 102 for determining a difference between the first address sum and the second address sum;
a determining module 103, configured to determine a new object of the first data set relative to the second data set according to the difference value.
In addition, the embodiment of the present invention also proposes a computer-readable storage medium, on which a determination program of a new object is stored, which when executed by a processor implements the steps of the determination method of a new object as described in the above embodiments.
It should be noted that, in this document, the terms "comprises," "comprising," or any other variation thereof, are intended to cover a non-exclusive inclusion, such that a process, method, article, or system that comprises a list of elements does not include only those elements but may include other elements not expressly listed or inherent to such process, method, article, or system. Without further limitation, an element defined by the phrase "comprising one … …" does not exclude the presence of other like elements in a process, method, article, or system that comprises the element.
The foregoing embodiment numbers of the present invention are merely for the purpose of description, and do not represent the advantages or disadvantages of the embodiments.
From the above description of the embodiments, it will be clear to those skilled in the art that the above-described embodiment method may be implemented by means of software plus a necessary general hardware platform, but of course may also be implemented by means of hardware, but in many cases the former is a preferred embodiment. Based on such understanding, the technical solution of the present invention may be embodied essentially or in a part contributing to the prior art in the form of a software product stored in a storage medium (e.g. ROM/RAM, magnetic disk, optical disk) as described above, comprising several instructions for causing a terminal device to perform the method according to the embodiments of the present invention.
The foregoing description is only of the preferred embodiments of the present invention, and is not intended to limit the scope of the invention, but rather is intended to cover any equivalents of the structures or equivalent processes disclosed herein or in the alternative, which may be employed directly or indirectly in other related arts.

Claims (8)

1. The method for determining the newly added object is characterized by comprising the following steps:
acquiring a first address sum of objects in a first data set and a second address sum of objects in a second data set, wherein the first address sum is a value obtained by adding storage addresses corresponding to all objects in the first data set, and the second address sum is a value obtained by adding storage addresses corresponding to all objects in the second data set;
determining a difference between the first address sum and the second address sum;
determining a target storage address corresponding to the newly added object according to the difference value;
and traversing the first data set through single-layer FOR circulation, determining an object corresponding to the target storage address, and taking the object corresponding to the target storage address as a new object.
2. The method of claim 1, wherein the step of obtaining a first address sum of the objects in the first dataset and a second address sum of the objects in the second dataset comprises:
traversing the first data set through single-layer FOR circulation, obtaining a first storage address of each object in the first data set, and determining a first address sum according to the first storage address; and
and traversing the second data set through single-layer FOR circulation, acquiring a second storage address of each object in the second data set, and determining a second address sum according to the second storage address.
3. The method of claim 1, further comprising, after the step of determining the new object of the first data set relative to the second data set based on the difference value:
synchronizing the newly added object to the second data set to keep the first data set and the second data set synchronized.
4. The method of claim 1, further comprising, after the step of determining the new object of the first data set relative to the second data set based on the difference value:
displaying the newly added object through an interactive interface, and receiving a modification action of the newly added object through the interactive interface;
modifying the newly added object displayed in the interactive interface according to the modification action;
and updating the first data set according to the modified newly-added object.
5. The method of determining a new object according to claim 1, wherein after the step of determining the difference between the first address sum and the second address sum, further comprising:
and when the difference value is 0, outputting prompt information that the objects in the first data set are the same as the objects in the second data set.
6. A terminal device, characterized in that the terminal device comprises: memory, a processor and a determination program of a new object stored on the memory and executable on the processor, which when executed by the processor realizes the steps of the determination method of a new object according to any one of claims 1 to 5.
7. A terminal device, characterized in that the terminal device comprises:
the system comprises an acquisition module, a storage module and a storage module, wherein the acquisition module is used for acquiring a first address sum of objects in a first data set and a second address sum of objects in a second data set, wherein the first address sum is a value obtained by adding storage addresses corresponding to all objects in the first data set, and the second address sum is a value obtained by adding storage addresses corresponding to all objects in the second data set;
a calculation module for determining a difference between the first address sum and the second address sum;
the determining module is used for determining a target storage address corresponding to the newly added object according to the difference value; and traversing the first data set through single-layer FOR circulation, determining an object corresponding to the target storage address, and taking the object corresponding to the target storage address as a new object.
8. A computer-readable storage medium, wherein a determination program of a new object is stored on the computer-readable storage medium, which when executed by a processor, implements the steps of the determination method of a new object according to any one of claims 1 to 5.
CN202110858791.1A 2021-07-28 2021-07-28 Determination method, terminal equipment and medium for newly added object Active CN113504930B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202110858791.1A CN113504930B (en) 2021-07-28 2021-07-28 Determination method, terminal equipment and medium for newly added object

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202110858791.1A CN113504930B (en) 2021-07-28 2021-07-28 Determination method, terminal equipment and medium for newly added object

Publications (2)

Publication Number Publication Date
CN113504930A CN113504930A (en) 2021-10-15
CN113504930B true CN113504930B (en) 2024-03-12

Family

ID=78014915

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202110858791.1A Active CN113504930B (en) 2021-07-28 2021-07-28 Determination method, terminal equipment and medium for newly added object

Country Status (1)

Country Link
CN (1) CN113504930B (en)

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN109800110A (en) * 2019-01-30 2019-05-24 郑州云海信息技术有限公司 Data back up method, system and electronic equipment, storage medium and back-up device
WO2019205906A1 (en) * 2018-04-28 2019-10-31 华为技术有限公司 Data synchronization method and synchronization service device
CN110830603A (en) * 2019-10-17 2020-02-21 中盈优创资讯科技有限公司 IPV6 address summarizing method and device
CN111752955A (en) * 2020-06-29 2020-10-09 深圳前海微众银行股份有限公司 Data processing method, device, equipment and computer readable storage medium

Family Cites Families (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US10296219B2 (en) * 2015-05-28 2019-05-21 Vmware, Inc. Data deduplication in a block-based storage system

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2019205906A1 (en) * 2018-04-28 2019-10-31 华为技术有限公司 Data synchronization method and synchronization service device
CN109800110A (en) * 2019-01-30 2019-05-24 郑州云海信息技术有限公司 Data back up method, system and electronic equipment, storage medium and back-up device
CN110830603A (en) * 2019-10-17 2020-02-21 中盈优创资讯科技有限公司 IPV6 address summarizing method and device
CN111752955A (en) * 2020-06-29 2020-10-09 深圳前海微众银行股份有限公司 Data processing method, device, equipment and computer readable storage medium

Also Published As

Publication number Publication date
CN113504930A (en) 2021-10-15

Similar Documents

Publication Publication Date Title
US20220253588A1 (en) Page processing method and related apparatus
US9075633B2 (en) Configuration of life cycle management for configuration files for an application
CN111857855B (en) Webpage loading method and device and intelligent equipment
CN110287170B (en) Database upgrading method, state data calling method, device and storage medium
US9477497B2 (en) Methods for determining resource dependency and systems thereof
CN112948039B (en) Page display method, device, equipment and storage medium
CN111338706A (en) Configuration file importing method, device, equipment and computer readable storage medium
US20120185794A1 (en) Method and Apparatus for Managing Buttons on Taskbar
CN113504930B (en) Determination method, terminal equipment and medium for newly added object
CN113779004A (en) Data verification method and device
CN112395339A (en) Method and device for checking data access between systems, computer equipment and storage medium
CN109032747B (en) Data updating method and device
CN112691382B (en) Resource processing method, device and computer readable storage medium
CN111124386B (en) Animation event processing method, device, equipment and storage medium based on Unity
CN114816437A (en) Method, system and equipment for reversely generating Java entity class
CN114092590A (en) Electronic device and evaluation method and medium for image rendering performance of electronic device
CN111796845A (en) Database upgrading method, state data query method, device and storage medium
CN112416383A (en) Hot updating method and device for golang program and computer equipment
CN114895825B (en) List display method, electronic device, and storage medium
CN111931010B (en) Dynamic binding method, device, equipment and storage medium for anchor point and line
CN116151198A (en) Method, device, equipment and storage medium for converting list structure
CN115439640A (en) Virtual model cloning method and device
CN117008878A (en) Rule generation method, device, equipment and storage medium
CN115640425A (en) kanzi data updating method, device, medium and equipment
JP6639675B2 (en) Image processing apparatus, image processing method, and program

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