CN112272218A - Cloud platform instance resource operation method and device, computer equipment and storage medium - Google Patents
Cloud platform instance resource operation method and device, computer equipment and storage medium Download PDFInfo
- Publication number
- CN112272218A CN112272218A CN202011112112.8A CN202011112112A CN112272218A CN 112272218 A CN112272218 A CN 112272218A CN 202011112112 A CN202011112112 A CN 202011112112A CN 112272218 A CN112272218 A CN 112272218A
- Authority
- CN
- China
- Prior art keywords
- command
- class
- instance
- cloud platform
- target
- 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
Links
- 238000000034 method Methods 0.000 title claims abstract description 29
- 238000012545 processing Methods 0.000 claims abstract description 36
- 238000004458 analytical method Methods 0.000 claims abstract description 18
- 238000004590 computer program Methods 0.000 claims description 10
- 238000009434 installation Methods 0.000 claims description 10
- 238000011017 operating method Methods 0.000 claims description 7
- 230000006870 function Effects 0.000 claims description 4
- 230000002708 enhancing effect Effects 0.000 abstract 1
- 238000011161 development Methods 0.000 description 6
- 238000010586 diagram Methods 0.000 description 2
- 230000001360 synchronised effect Effects 0.000 description 2
- 238000013461 design Methods 0.000 description 1
- 230000014509 gene expression Effects 0.000 description 1
- 238000012986 modification Methods 0.000 description 1
- 230000004048 modification Effects 0.000 description 1
- 238000003672 processing method Methods 0.000 description 1
- 230000003252 repetitive effect Effects 0.000 description 1
- 230000003068 static effect Effects 0.000 description 1
Images
Classifications
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04L—TRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
- H04L67/00—Network arrangements or protocols for supporting network services or applications
- H04L67/01—Protocols
- H04L67/10—Protocols in which an application is distributed across nodes in the network
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F9/00—Arrangements for program control, e.g. control units
- G06F9/06—Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
- G06F9/44—Arrangements for executing specific programs
- G06F9/455—Emulation; Interpretation; Software simulation, e.g. virtualisation or emulation of application or operating system execution engines
- G06F9/45533—Hypervisors; Virtual machine monitors
- G06F9/45558—Hypervisor-specific management and integration aspects
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F9/00—Arrangements for program control, e.g. control units
- G06F9/06—Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
- G06F9/44—Arrangements for executing specific programs
- G06F9/455—Emulation; Interpretation; Software simulation, e.g. virtualisation or emulation of application or operating system execution engines
- G06F9/45533—Hypervisors; Virtual machine monitors
- G06F9/45558—Hypervisor-specific management and integration aspects
- G06F2009/4557—Distribution of virtual machine instances; Migration and load balancing
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F9/00—Arrangements for program control, e.g. control units
- G06F9/06—Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
- G06F9/44—Arrangements for executing specific programs
- G06F9/455—Emulation; Interpretation; Software simulation, e.g. virtualisation or emulation of application or operating system execution engines
- G06F9/45533—Hypervisors; Virtual machine monitors
- G06F9/45558—Hypervisor-specific management and integration aspects
- G06F2009/45595—Network integration; Enabling network access in virtual machine instances
Landscapes
- Engineering & Computer Science (AREA)
- Software Systems (AREA)
- Theoretical Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Computer Networks & Wireless Communication (AREA)
- Signal Processing (AREA)
- Stored Programmes (AREA)
Abstract
The invention discloses a cloud platform instance resource operation method and device, computer equipment and a storage medium. The method comprises the following steps: defining an operation parent class and a unified processing class; creating a plurality of command operation classes for operating the example resources, wherein the command operation classes inherit the operation parent class; acquiring an instance resource operation command through a cloud platform, and analyzing the instance resource operation command by using a unified processing class to obtain an analysis result; and matching the analysis result with the command operation classes to obtain a target command operation class, and instantiating the target command operation class to operate the instance resources of the cloud platform. The scheme of the invention separates each specific operation to define the operation parent class and the unified processing class, and the specific business processing logic is maintained in a plurality of command operation classes inheriting the operation parent class, thereby simplifying the logic and the readability of the code, avoiding excessive repeated logic and enhancing the expansibility and the flexibility of a business system.
Description
Technical Field
The invention relates to the field of cloud computing, in particular to a cloud platform instance resource operation method and device, computer equipment and a storage medium.
Background
With the advent of the cloud computing and big data era, the complexity of emerging services of various CPU architectures is gradually improved, and many services are not deployed in a certain server of a machine room of the service provider but use resources on the cloud, such as a public cloud virtual machine, a cloud database and the like. As a cloud platform of heterogeneous CPUs managing these cloud resources, the complexity of the service is gradually increasing, and the service range is also becoming wider and wider. As a main resource of the cloud platform, the cloud host is not only a main product of the cloud platform, but also is endowed with a lot of business responsibilities, such as in a service directory module, a way of creating an instance resource by creating the cloud host and installing software required by a user in the cloud host for use by the user, such as a database service or some business system services.
At present, the main way of creating and using resources by a cloud platform is to use various logic judgments to distinguish different types of CPU architectures, operating systems, and service instances in the cloud platform to respectively execute various operations, for example, the cloud platform is required to "control" instance resources, such as operations that mysql needs to be installed, mysql is started, mysql is closed, mysql is restarted, and the like. However, this processing method makes the processing logic especially complex, and as more compatible CPU architectures are available, more operating systems become difficult to maintain, and when a new CPU architecture is added, the original code needs to be changed, which is not in accordance with the switching principle, and the flexibility is poor.
Disclosure of Invention
Based on the problems, the invention provides a design idea based on a command mode, and provides a cloud platform instance resource operation method, a device, computer equipment and a storage medium which have strong service expansibility and accord with an opening and closing principle.
According to an aspect of the present invention, there is provided a cloud platform instance resource operation method, including:
defining an operation parent class and a unified processing class;
creating a plurality of command operation classes for operating the instance resources, wherein the command operation classes inherit the operation parent class;
acquiring an instance resource operation command through a cloud platform, and analyzing the instance resource operation command by using the unified processing class to obtain an analysis result;
and matching the analysis result with the command operation classes to obtain a target command operation class, and instantiating the target command operation class to operate instance resources of the cloud platform.
In one embodiment, the creating of command operation classes operating on instance resources, the inheriting of the operation parent class by the command operation classes comprises:
acquiring a CPU architecture type, an operating system type and a service instance type under a cloud platform;
and establishing subclasses of different CPU architecture types, operating system types and service instance types by taking the operation parent class as a template so as to obtain a plurality of command operation classes.
In one embodiment, the instance resource operation command is obtained through a cloud platform, and the instance resource operation command is analyzed by using the unified processing class to obtain an analysis result;
the cloud platform generates an instance resource operation command according to the service requirement, and transmits the instance resource operation command to a unified processing class;
and the unified processing class analyzes the instance resource operation command to obtain a target CPU structure type, a target operating system type and a target service instance type.
In one embodiment, the step of matching the parsing result with the command operation classes to obtain a target command operation class, and instantiating the target command operation class to operate an instance resource of the cloud platform includes:
matching the target CPU structure type, the target operating system type and the target service instance type with the CPU architecture type, the operating system type and the service instance type of a plurality of command operation classes and determining the target command operation class;
and instantiating the target command operation class, and executing a function in the instantiated target command operation class to operate the instance resources of the cloud platform.
In one embodiment, the cloud platform is a heterogeneous CPU architecture.
In one embodiment, the operation parent class at least includes: the system comprises an installation interface, a starting interface, a shutdown interface and a restarting interface.
In one embodiment, the service instance categories include: mysql service, redis service, business system service, oracle service.
According to another aspect of the present invention, there is provided a cloud platform instance resource operating apparatus, the apparatus including:
the defining module is used for defining an operation parent class and a unified processing class;
the creating module is used for creating a plurality of command operation classes for operating the instance resources, and the command operation classes inherit the operation parent class;
the command analysis module is used for acquiring an instance resource operation command through the cloud platform and analyzing the instance resource operation command by using the unified processing class to obtain an analysis result;
and the example resource operation module is used for matching the analysis result with the command operation classes to obtain a target command operation class and instantiating the target command operation class to operate example resources of the cloud platform.
According to still another aspect of the present invention, there is also provided a computer apparatus including: at least one processor; and
a memory storing a computer program executable on the processor, the processor performing the aforementioned cloud platform instance resource operating method when executing the program.
According to still another aspect of the present invention, there is also provided a computer-readable storage medium, in which a computer program is stored, and the computer program performs the foregoing cloud platform instance resource operating method when being executed by a processor.
According to the cloud platform instance resource operation method, the cloud platform instance resource operation device, the computer equipment and the storage medium, each specific operation is extracted to define the operation parent class and the unified processing class, the specific business processing logic is maintained in the command operation classes which inherit the operation parent class, the logic and the readability of codes are simplified, too many repeated logics are avoided, the expansibility of a business system is enhanced, the development iteration period of new business development is shortened, and the cloud platform instance resource operation method has good flexibility.
Drawings
In order to more clearly illustrate the embodiments of the present invention or the technical solutions in the prior art, the drawings used in the description of the embodiments or the prior art will be briefly described below, and it is obvious that the drawings in the following description are only some embodiments of the present invention, and it is obvious for those skilled in the art that other embodiments can be obtained by using the drawings without creative efforts.
FIG. 1 is a logical diagram illustrating an example resource operation of a cloud platform according to the prior art;
fig. 2 is a flowchart illustrating a method for operating resources of an example cloud platform according to an embodiment of the present invention;
FIG. 3 is a logical representation of platform instance resource operations in another embodiment of the present invention;
FIG. 4 is a schematic structural diagram of an example resource operating device of a cloud platform according to another embodiment of the present invention;
fig. 5 is an internal structural view of a computer device according to another embodiment of the present invention.
Detailed Description
In order to make the objects, technical solutions and advantages of the present invention more apparent, the following embodiments of the present invention are described in further detail with reference to the accompanying drawings.
It should be noted that all expressions using "first" and "second" in the embodiments of the present invention are used for distinguishing two entities with the same name but different names or different parameters, and it should be noted that "first" and "second" are merely for convenience of description and should not be construed as limitations of the embodiments of the present invention, and they are not described in any more detail in the following embodiments.
In an embodiment, referring to fig. 2, the present invention provides a cloud platform instance resource operating method, which specifically includes the following steps:
s100, defining an operation parent class and a unified processing class;
s200, creating a plurality of command operation classes for operating instance resources, wherein the command operation classes inherit the operation parent class;
s300, acquiring an instance resource operation command through a cloud platform, and analyzing the instance resource operation command by using the unified processing class to obtain an analysis result;
s400, matching the analysis result with the command operation classes to obtain a target command operation class, and instantiating the target command operation class to operate instance resources of the cloud platform. Wherein the target command operation class belongs to a plurality of command operation classes.
According to the cloud platform instance resource operation method, each specific operation is extracted to define the operation parent class and the unified processing class, and the specific business processing logic is maintained in the command operation classes inheriting the operation parent class, so that the logic and the readability of codes are simplified, too much repeated logic is avoided, the expansibility of a business system is enhanced, the development iteration cycle of new business development is shortened, and the cloud platform instance resource operation method has better flexibility.
In another embodiment, the foregoing step S200 specifically includes the following sub-steps:
s210, acquiring a CPU architecture type, an operating system type and a service instance type under a cloud platform;
s220, establishing subclasses of different CPU architecture types, operating system types and service instance types by taking the operation parent class as a template so as to obtain a plurality of command operation classes.
In a further embodiment, step S300 is provided with the sub-steps comprising:
s310, the cloud platform generates an instance resource operation command according to the service requirement and transmits the instance resource operation command to a unified processing class;
s320, the unified processing class analyzes the instance resource operation command to obtain a target CPU structure type, a target operating system type and a target service instance type.
In another embodiment, step S400 specifically includes the following sub-steps:
s410, matching the target CPU structure type, the target operating system type and the target service instance type with the CPU architecture type, the operating system type and the service instance type of a plurality of command operation classes and determining a target command operation class;
s420 instantiates the target command operation class, and executes a function in the instantiated target command operation class to operate the instance resource of the cloud platform.
In another embodiment, referring to fig. 3, to facilitate understanding of the technical solution of the present invention, the following takes the mysql service and the redisfu as an example, assuming that the CPU architecture is a Loongson, the operating system is x86, and the specific operations include: the cloud platform instance resource operation method comprises the following steps of installation, starting, shutdown and restarting:
s501, defining and maintaining an operation parent class, wherein the operation parent class comprises interfaces of various operations, such as installation, startup, shutdown, retry and other interfaces, and different types of operations of the operation parent class are independently maintained and are uniformly called by a uniform processing class, so that the original code is not required to be changed when a new operation is expanded, and only one operation class is required to be added;
s502, maintaining a command operation class for different CPU architectures, operating systems and service instance types to realize the logic of each interface in the step 1; for example, in specific implementation, traversing all the CPU architectures, operation types, and operating systems to create several sub-classes, such as x86redis installation, loongson mysql installation, x86redis boot, loongson mysql boot, x86redis shutdown, loongson mysql shutdown, x86redis restart, and loongson mysql restart, totaling 8 command operation classes, where the 8 command operation classes are all integrated into an operation parent class;
s503, maintaining a uniform operation processing class, when a specific service needs to execute a starting operation on a certain instance resource, the processing class finds a corresponding command operation class according to a cpu architecture type, an operating system type and an instance resource type, and executes a specific method in the class; for example, assuming that the unified processing class receives a command requiring operation instance resource through the cloud platform (installing the redis service in the x86 system), the unified processing class analyzes the operation instance resource command to determine that the operating system is x86 and the redis service, and further instantiates the command operation class installed in x86redis and executes a method in the x86redis installation command operation class to implement the operation on the instance resource according to the determination that the x86redis installation is the target command operation class.
S504, when adding an example type or needing to be compatible with a new type CPU architecture, only a command operation class integrating an operation parent class needs to be added, and the specific business operation is written into the new command operation class without changing the original code and logic part; similarly, if a new instance type is to be added, for example, a service instance of an oracle is to be added, the corresponding function of the oracle can be realized only by adding corresponding operation classes (x86oracle installation, loongson oracle installation, x86oracle startup, loongson oracle startup, x86oracle shutdown, loongson oracle shutdown, etc.) by using the previously defined operation parent class as a template, and the operation parent class, the unified processing class, and the command processing part are not required to be modified or adjusted; it should be noted that, the above is only described with an oracle service as an example, and should not be construed as a limitation to the type of the service instance, and the type of the service instance may also be mysql service, redis service, business system service, and the like, or a combination thereof in the specific implementation process.
According to the cloud platform instance resource operation method, the original logic for distinguishing the CPU architecture, the operating system and the instance type is separated, command operation classes of different platforms, operating systems and instance types are introduced, and unified service logic is maintained in the operation classes. Simplifying the logic and readability of the code and avoiding too much repetitive logic. Therefore, if an example or a CPU architecture is newly added, the original logic does not need to be changed, the code logic is simplified, and the robustness of the code is enhanced. And when the business is expanded and resources in the cloud platform are more and more, original business codes do not need to be changed, and only corresponding command operation classes (namely subclasses) need to be added, so that the expansibility of a business system is enhanced, the development iteration period of new business development is shortened, the market demand is responded more quickly, and the competitiveness of the heterogeneous CPU cloud platform is enhanced.
In another embodiment, referring to fig. 4, the present invention provides a cloud platform instance resource operating apparatus 60, specifically including:
a defining module 61, configured to define an operation parent class and a unified processing class;
a creating module 62, configured to create a plurality of command operation classes for operating on instance resources, where the command operation classes inherit the operation parent class;
the command analysis module 63 is configured to obtain an instance resource operation command through a cloud platform, and analyze the instance resource operation command by using the unified processing class to obtain an analysis result;
and the instance resource operation module 64 is configured to match the analysis result with the command operation classes to obtain a target command operation class, and instantiate the target command operation class to operate an instance resource of the cloud platform.
It should be noted that, for specific limitations of the cloud platform instance resource operating device, reference may be made to the above limitations of the cloud platform instance resource operating method, and details are not repeated here. The modules in the cloud platform example resource operating device can be wholly or partially implemented by software, hardware and a combination thereof. The modules can be embedded in a hardware form or independent from a processor in the computer device, and can also be stored in a memory in the computer device in a software form, so that the processor can call and execute operations corresponding to the modules.
According to another aspect of the present invention, a computer device is provided, the computer device may be a server, and the internal structure thereof is shown in fig. 5. The computer device includes a processor, a memory, a network interface, and a database connected by a system bus. Wherein the processor of the computer device is configured to provide computing and control capabilities. The memory of the computer device comprises a nonvolatile storage medium and an internal memory. The non-volatile storage medium stores an operating system, a computer program, and a database. The internal memory provides an environment for the operation of an operating system and computer programs in the non-volatile storage medium. The database of the computer device is used for storing data. The network interface of the computer device is used for communicating with an external terminal through a network connection. The computer program, when executed by a processor, implements the cloud platform instance resource operating method described above.
According to yet another aspect of the present invention, there is provided a computer readable storage medium having stored thereon a computer program which, when executed by a processor, implements the cloud platform instance resource operating method described above.
It will be understood by those skilled in the art that all or part of the processes of the methods of the embodiments described above can be implemented by hardware instructions of a computer program, which can be stored in a non-volatile computer-readable storage medium, and when executed, can include the processes of the embodiments of the methods described above. Any reference to memory, storage, database, or other medium used in the embodiments provided herein may include non-volatile and/or volatile memory, among others. Non-volatile memory can include read-only memory (ROM), Programmable ROM (PROM), Electrically Programmable ROM (EPROM), Electrically Erasable Programmable ROM (EEPROM), or flash memory. Volatile memory can include Random Access Memory (RAM) or external cache memory. By way of illustration and not limitation, RAM is available in a variety of forms such as Static RAM (SRAM), Dynamic RAM (DRAM), Synchronous DRAM (SDRAM), Double Data Rate SDRAM (DDRSDRAM), Enhanced SDRAM (ESDRAM), Synchronous Link DRAM (SLDRAM), Rambus Direct RAM (RDRAM), direct bus dynamic RAM (DRDRAM), and memory bus dynamic RAM (RDRAM).
The technical features of the above embodiments can be arbitrarily combined, and for the sake of brevity, all possible combinations of the technical features in the above embodiments are not described, but should be considered as the scope of the present specification as long as there is no contradiction between the combinations of the technical features.
The above-mentioned embodiments only express several embodiments of the present application, and the description thereof is more specific and detailed, but not construed as limiting the scope of the invention. It should be noted that, for a person skilled in the art, several variations and modifications can be made without departing from the concept of the present application, which falls within the scope of protection of the present application. Therefore, the protection scope of the present patent shall be subject to the appended claims.
Claims (10)
1. A cloud platform instance resource operating method is characterized by comprising the following steps:
defining an operation parent class and a unified processing class;
creating a plurality of command operation classes for operating the instance resources, wherein the command operation classes inherit the operation parent class;
acquiring an instance resource operation command through a cloud platform, and analyzing the instance resource operation command by using the unified processing class to obtain an analysis result;
and matching the analysis result with the command operation classes to obtain a target command operation class, and instantiating the target command operation class to operate instance resources of the cloud platform.
2. The method of claim 1, wherein creating command operation classes that operate on instance resources, the step of inheriting the operation parent class by the command operation classes comprises:
acquiring a CPU architecture type, an operating system type and a service instance type under a cloud platform;
and establishing subclasses of different CPU architecture types, operating system types and service instance types by taking the operation parent class as a template so as to obtain a plurality of command operation classes.
3. The method according to claim 2, wherein the instance resource operation command is obtained by a cloud platform, and the instance resource operation command is parsed by the unified processing class to obtain a parsing result;
the cloud platform generates an instance resource operation command according to the service requirement, and transmits the instance resource operation command to a unified processing class;
and the unified processing class analyzes the instance resource operation command to obtain a target CPU structure type, a target operating system type and a target service instance type.
4. The method of claim 3, wherein the matching the parsed result with the command operation classes to obtain a target command operation class, and the instantiating the target command operation class to operate on instance resources of the cloud platform comprises:
matching the target CPU structure type, the target operating system type and the target service instance type with the CPU architecture type, the operating system type and the service instance type of a plurality of command operation classes and determining the target command operation class;
and instantiating the target command operation class, and executing a function in the instantiated target command operation class to operate the instance resources of the cloud platform.
5. The method of claim 1, wherein the cloud platform is a heterogeneous CPU architecture.
6. The method of claim 1, wherein the operation parent class comprises at least: the system comprises an installation interface, a starting interface, a shutdown interface and a restarting interface.
7. The method of claim 2, wherein the service instance categories comprise: mysql service, redis service, business system service, oracle service.
8. An apparatus for cloud platform instance resource manipulation, the apparatus comprising:
the defining module is used for defining an operation parent class and a unified processing class;
the creating module is used for creating a plurality of command operation classes for operating the instance resources, and the command operation classes inherit the operation parent class;
the command analysis module is used for acquiring an instance resource operation command through the cloud platform and analyzing the instance resource operation command by using the unified processing class to obtain an analysis result;
and the example resource operation module is used for matching the analysis result with the command operation classes to obtain a target command operation class and instantiating the target command operation class to operate example resources of the cloud platform.
9. A computer device, comprising:
at least one processor; and
a memory storing a computer program operable in the processor, the processor when executing the program performing the method of any of claims 1-7.
10. A computer-readable storage medium, in which a computer program is stored which, when being executed by a processor, is adapted to carry out the method of any one of claims 1 to 7.
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN202011112112.8A CN112272218B (en) | 2020-10-16 | 2020-10-16 | Cloud platform instance resource operation method and device, computer equipment and storage medium |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN202011112112.8A CN112272218B (en) | 2020-10-16 | 2020-10-16 | Cloud platform instance resource operation method and device, computer equipment and storage medium |
Publications (2)
Publication Number | Publication Date |
---|---|
CN112272218A true CN112272218A (en) | 2021-01-26 |
CN112272218B CN112272218B (en) | 2023-01-06 |
Family
ID=74338379
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
CN202011112112.8A Active CN112272218B (en) | 2020-10-16 | 2020-10-16 | Cloud platform instance resource operation method and device, computer equipment and storage medium |
Country Status (1)
Country | Link |
---|---|
CN (1) | CN112272218B (en) |
Cited By (6)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN113778535A (en) * | 2021-08-10 | 2021-12-10 | 济南浪潮数据技术有限公司 | Method, system, equipment and storage medium for operation verification of cloud host |
CN113986399A (en) * | 2021-09-15 | 2022-01-28 | 西安震有信通科技有限公司 | Scheduling command execution method, server and storage medium |
CN114327436A (en) * | 2022-03-12 | 2022-04-12 | 联信弘方(北京)科技股份有限公司 | Development method, system, terminal and storage medium for monitoring target plug-in |
CN114844875A (en) * | 2022-04-21 | 2022-08-02 | 深圳依时货拉拉科技有限公司 | Application Programming Interface (API) management method, device, equipment and medium |
CN114928663A (en) * | 2022-06-02 | 2022-08-19 | 蜂助手股份有限公司 | Method and device for recognizing callback message |
CN117008884A (en) * | 2023-07-06 | 2023-11-07 | 广州三七极耀网络科技有限公司 | Logic class processing method, device, equipment and storage medium in game development |
Citations (10)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN102073461A (en) * | 2010-12-07 | 2011-05-25 | 成都市华为赛门铁克科技有限公司 | Input-output request scheduling method, memory controller and memory array |
CN103873297A (en) * | 2014-03-14 | 2014-06-18 | 浪潮通信信息系统有限公司 | Processing method for reverse inheritance modeling of data acquisition and processing system |
CN103902383A (en) * | 2014-03-26 | 2014-07-02 | 浪潮电子信息产业股份有限公司 | Method for designing resource managers on basis of inheritance mechanisms |
CN108984236A (en) * | 2018-08-08 | 2018-12-11 | 郑州云海信息技术有限公司 | A kind of implementation method and equipment of virtual management platform |
CN109558242A (en) * | 2018-11-28 | 2019-04-02 | 上海帆尚行科技有限公司 | A method of promoting database cloud platform resource utilization |
CN109766190A (en) * | 2019-01-15 | 2019-05-17 | 无锡华云数据技术服务有限公司 | Cloud resource dispatching method, device, equipment and storage medium |
CN110209377A (en) * | 2019-04-26 | 2019-09-06 | 平安科技(深圳)有限公司 | Interface packet processing method, device, equipment and storage medium based on factory class |
CN110489172A (en) * | 2019-07-29 | 2019-11-22 | 贝壳技术有限公司 | More downstreams rely on the processing method and processing device of request |
CN111124286A (en) * | 2019-12-04 | 2020-05-08 | 山东超越数控电子股份有限公司 | Libcloud-based multi-cloud management implementation method |
CN111722888A (en) * | 2020-06-19 | 2020-09-29 | 浪潮电子信息产业股份有限公司 | Operation execution method, device, equipment and readable storage medium |
-
2020
- 2020-10-16 CN CN202011112112.8A patent/CN112272218B/en active Active
Patent Citations (10)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN102073461A (en) * | 2010-12-07 | 2011-05-25 | 成都市华为赛门铁克科技有限公司 | Input-output request scheduling method, memory controller and memory array |
CN103873297A (en) * | 2014-03-14 | 2014-06-18 | 浪潮通信信息系统有限公司 | Processing method for reverse inheritance modeling of data acquisition and processing system |
CN103902383A (en) * | 2014-03-26 | 2014-07-02 | 浪潮电子信息产业股份有限公司 | Method for designing resource managers on basis of inheritance mechanisms |
CN108984236A (en) * | 2018-08-08 | 2018-12-11 | 郑州云海信息技术有限公司 | A kind of implementation method and equipment of virtual management platform |
CN109558242A (en) * | 2018-11-28 | 2019-04-02 | 上海帆尚行科技有限公司 | A method of promoting database cloud platform resource utilization |
CN109766190A (en) * | 2019-01-15 | 2019-05-17 | 无锡华云数据技术服务有限公司 | Cloud resource dispatching method, device, equipment and storage medium |
CN110209377A (en) * | 2019-04-26 | 2019-09-06 | 平安科技(深圳)有限公司 | Interface packet processing method, device, equipment and storage medium based on factory class |
CN110489172A (en) * | 2019-07-29 | 2019-11-22 | 贝壳技术有限公司 | More downstreams rely on the processing method and processing device of request |
CN111124286A (en) * | 2019-12-04 | 2020-05-08 | 山东超越数控电子股份有限公司 | Libcloud-based multi-cloud management implementation method |
CN111722888A (en) * | 2020-06-19 | 2020-09-29 | 浪潮电子信息产业股份有限公司 | Operation execution method, device, equipment and readable storage medium |
Cited By (10)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN113778535A (en) * | 2021-08-10 | 2021-12-10 | 济南浪潮数据技术有限公司 | Method, system, equipment and storage medium for operation verification of cloud host |
CN113778535B (en) * | 2021-08-10 | 2024-02-23 | 济南浪潮数据技术有限公司 | Cloud host operation verification method, system, equipment and storage medium |
CN113986399A (en) * | 2021-09-15 | 2022-01-28 | 西安震有信通科技有限公司 | Scheduling command execution method, server and storage medium |
CN114327436A (en) * | 2022-03-12 | 2022-04-12 | 联信弘方(北京)科技股份有限公司 | Development method, system, terminal and storage medium for monitoring target plug-in |
CN114327436B (en) * | 2022-03-12 | 2022-07-08 | 联信弘方(北京)科技股份有限公司 | Development method, system, terminal and storage medium for monitoring target plug-in |
CN114844875A (en) * | 2022-04-21 | 2022-08-02 | 深圳依时货拉拉科技有限公司 | Application Programming Interface (API) management method, device, equipment and medium |
CN114844875B (en) * | 2022-04-21 | 2024-02-06 | 深圳依时货拉拉科技有限公司 | Application programming interface API management method, device, equipment and medium |
CN114928663A (en) * | 2022-06-02 | 2022-08-19 | 蜂助手股份有限公司 | Method and device for recognizing callback message |
CN117008884A (en) * | 2023-07-06 | 2023-11-07 | 广州三七极耀网络科技有限公司 | Logic class processing method, device, equipment and storage medium in game development |
CN117008884B (en) * | 2023-07-06 | 2024-05-17 | 广州三七极耀网络科技有限公司 | Logic class processing method, device, equipment and storage medium in game development |
Also Published As
Publication number | Publication date |
---|---|
CN112272218B (en) | 2023-01-06 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
CN112272218B (en) | Cloud platform instance resource operation method and device, computer equipment and storage medium | |
CN107976986B (en) | Method for programming an electronic control module of a vehicle | |
CN109814854B (en) | Project framework generation method, device, computer equipment and storage medium | |
KR100675518B1 (en) | Modular bios update mechanism | |
CN108572845B (en) | Upgrading method of distributed micro-service cluster and related system | |
CN109445845B (en) | Interface calling method and device, computer equipment and storage medium | |
CN109597618B (en) | Program development method, program development device, computer device, and storage medium | |
CN111752830A (en) | Automobile diagnosis system, and updating method, device and equipment of automobile diagnosis system | |
CN111752571A (en) | Program upgrading method, device, equipment and storage medium | |
CN109361628B (en) | Message assembling method and device, computer equipment and storage medium | |
CN106953746A (en) | Clustered node upgrade-system and method | |
CN112256249A (en) | Method and equipment for expanding Android system function and computer storage medium | |
WO2014196994A1 (en) | Dynamic management of composable api sets | |
US11010144B2 (en) | System and method for runtime adaptable applications | |
CN111443959B (en) | Task execution method, device and server | |
CN115291946A (en) | Hongmong system transplanting method, device, electronic equipment and readable medium | |
CN112181423A (en) | Project construction method and device based on configuration file, computer equipment and medium | |
CN111666112A (en) | Method, device and system for realizing platform plug-in and computer equipment | |
CN114567507A (en) | Current limiting method, system, device and storage medium | |
CN110795197A (en) | Method and device for internationalizing enumerated classes, computer equipment and storage medium | |
CN110515671A (en) | Initial method, apparatus for initializing, terminal device and readable storage medium storing program for executing | |
CN112631613A (en) | Intelligent contract deploying and calling method based on block chain platform and related equipment | |
CN113448643A (en) | Configuration data management system and method | |
US11671325B1 (en) | Determining IoT device compatibility with deployments | |
CN115934198A (en) | SDK loading method, device, equipment and storage medium |
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 |