WO2012027975A1 - Method and apparatus for improving execution efficiency of service scripts - Google Patents

Method and apparatus for improving execution efficiency of service scripts Download PDF

Info

Publication number
WO2012027975A1
WO2012027975A1 PCT/CN2011/070569 CN2011070569W WO2012027975A1 WO 2012027975 A1 WO2012027975 A1 WO 2012027975A1 CN 2011070569 W CN2011070569 W CN 2011070569W WO 2012027975 A1 WO2012027975 A1 WO 2012027975A1
Authority
WO
WIPO (PCT)
Prior art keywords
business
script
service
scripts
improving
Prior art date
Application number
PCT/CN2011/070569
Other languages
French (fr)
Chinese (zh)
Inventor
李峥
Original Assignee
中兴通讯股份有限公司
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 中兴通讯股份有限公司 filed Critical 中兴通讯股份有限公司
Publication of WO2012027975A1 publication Critical patent/WO2012027975A1/en

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/455Emulation; Interpretation; Software simulation, e.g. virtualisation or emulation of application or operating system execution engines
    • G06F9/45504Abstract machines for programme code execution, e.g. Java virtual machine [JVM], interpreters, emulators
    • G06F9/45508Runtime interpretation or emulation, e g. emulator loops, bytecode interpretation
    • G06F9/45512Command shells

Definitions

  • the present invention relates to a technology for developing a business system, and more particularly to an apparatus and method for improving the efficiency of execution of a business script. Background technique
  • the general business system performs the business script on the following steps:
  • the service system responds to the service request, initiates the business process, finds the corresponding business script and interprets the business script, and then searches for the tag action to be executed according to the script content, performs the corresponding action, and initiates to the platform side.
  • the action instruction implements the service request function; one service request ends, and if the same or different service request is received again, the same processing flow as above is executed.
  • there may be many different business operations in the business system and multiple users may use the same service at the same time. In this case, it is necessary to read from the script storage location multiple times, and analyze the business scripts, the services that have been activated. Logic cannot be reused. Summary of the invention
  • the main purpose of the present invention is to provide an apparatus and method for improving the efficiency of executing a business script, which can improve the execution efficiency of the entire business script.
  • An apparatus for improving the efficiency of executing a business script comprising: a business script parser and a business script processor, wherein
  • the service script analyzer is configured to analyze the extracted various types of service scripts, and extract a set of consecutive tokens representing a business action to form a shared service object component; the service script processor is configured to be used according to the service Request identification, query business scripts, generate business execution code, and instantiate code for shared business object components in business scripts during the process of generating business execution code.
  • the service script processor is further configured to: after instantiating the code of the shared business object component in the business script, storing in the object component business execution code instance correspondence table.
  • the service script processor is further configured to: when the corresponding service script is queried according to the service request, search in the object component service execution code instance correspondence table.
  • the device further includes: a service script extraction interface and a service script converter, wherein the service script extraction interface is configured to extract various types of service scripts, including a service script type, when the service system loads the service;
  • the business script converter is configured to convert various types of business scripts extracted by the business script extraction interface into standard extensible business scripts according to different types of business scripts, generate new business script identifiers, and generate new business script identifiers, and Standard extensible business scripts are sent to the business script parser.
  • the service script analyzer is further configured to: insert a component identifier corresponding to the shared business object component into a business script to replace the original script statement, and cache the shared business object component and its corresponding component identifier.
  • the apparatus further includes: a service script buffer for caching standard extensible business scripts to be analyzed and a common business object component.
  • the service script buffer is further configured to: determine whether to cache the standard extensible business script in the memory according to the frequency of the service script call.
  • a method to improve the efficiency of business script execution including the following steps:
  • the business script parser analyzes the extracted various types of business scripts, and extracts a set of consecutive tokens representing a business action to form a common business object component;
  • the business script processor queries the business script according to the service request identifier, generates the business execution code, and instantiates the shared business object component in the business script in the process of generating the business execution code.
  • the method further includes the following steps: after the service script processor instantiates the shared business object component in the service script, the business script processor is stored in the object component business execution code instance correspondence table.
  • the method further includes the following steps: when querying the corresponding service script according to the service request again, searching in the object component business execution code instance correspondence table.
  • the invention has the following advantages:
  • the device and the method for improving the execution efficiency of the business script according to the present invention when the service system loads the service, the business script is extracted through the business script acquisition interface, thereby improving the reading time of the business script;
  • the device normalizes and transforms various types of business scripts, and then uses the business script analyzer to componentize the shared parts in the business scripts, which reduces the processing difficulty of the business script interpretation and improves the processing time of the business scripts;
  • the same service is invoked, the same business script is shared, which improves the analysis efficiency of the business script parser for the standard extensible business script, and improves the execution code generation of the business script by the business script processor, thereby improving the entire business script. effectiveness.
  • FIG. 1 is a schematic structural diagram of an apparatus for improving service script execution efficiency according to an embodiment of the present invention
  • FIG. 2 is a schematic flowchart of improving execution efficiency of a service script according to an embodiment of the present invention. detailed description
  • Concurrency processing is an important requirement of the business to the system environment, and it is also a factor affecting system performance. An important factor, but the prior art cannot efficiently implement concurrent processing of business scripts. Therefore, in order to improve the efficiency of execution of business scripts, it is necessary to consider the business script processing methods and access technologies in the process of running the business system.
  • FIGS. 1 to 2 An apparatus and method for improving the efficiency of executing a business script of the present invention will be described in detail with reference to FIGS. 1 to 2.
  • the present invention uses the telecom service system as an example to describe the apparatus and method for improving the execution efficiency of the service script of the present invention.
  • the present invention is not limited thereto, and may be applicable to the fields of finance, broadcasting, television, and the like.
  • the business script executes the business system for the corresponding business processing.
  • FIG. 1 it is a schematic structural diagram of an apparatus for improving the efficiency of executing a business script according to an embodiment of the present invention.
  • the device for improving the execution efficiency of the business script of the present invention comprises a business script extraction interface, a business script converter, a business script analyzer and a business script processor.
  • the service script extraction interface is configured to extract various types of service scripts when the service system loads the service, including a service script type, a service script identifier, and a service script description statement, where the service script identifier is used to distinguish different service scripts.
  • the unique serial number is configured to extract various types of service scripts when the service system loads the service, including a service script type, a service script identifier, and a service script description statement, where the service script identifier is used to distinguish different service scripts.
  • the unique serial number is configured to extract various types of service scripts when the service system loads the service, including a service script type, a service script identifier, and a service script description statement, where the service script identifier is used to distinguish different service scripts.
  • the business script converter is used to convert various types of business scripts extracted by the business script extraction interface into different extensible business scripts (such as XML business scripts) according to the business script type, and generate new business scripts. Identify and send standard extensible business scripts to the Business Script Analyzer.
  • the service script converter is further configured to correspond to the new service script identifier and the business script identifier before the conversion, and save the correspondence.
  • the business script converter converts various types of business scripts extracted by the business script extraction interface into different standard conversion models according to the type of business scripts, and converts them into standard extensible business scripts:
  • the standard scripts that translate scripts into uniform formats, semantics, and grammars do not automate the analysis and execution of the functions that the business script itself implements. It is not convenient for unified management of business scripts and business scripts that cannot extract the same functions. due to
  • XML Extensible Markup Language
  • XML is readable, portable, and extensible. It combines the characteristics of business script tree structure, stateful markup, and transfer rules to describe the specific business function requirements. , the markup is used to complete the identity handler.
  • XML can define tags by itself. Tags can be used to describe the type or characteristics of data. It can be understood as a field name.
  • XML has the characteristics of separate data and format design, and can convert various formats of data into XML. Therefore, the present invention uses XML as the best carrier of the business script, and after defining the XML mark according to the data format of the original business script, a standard business script based on XML is generated.
  • a business script parser for analyzing a standard extensible business script converted by a business script converter, extracting a set of consecutive tokens representing a business action to form a common business object component, and generating a unique component identifier, and Insert the component ID into the business script to replace the original script statement, and cache the shared business object component and its corresponding component ID.
  • the business script parser analyzes the XML business script, uses the XML parser to get all the tags of the XML document, and obtains all the attributes of the tag, according to the XML business script.
  • a business rule defined by a specific requirement extracts a set of tokens that continuously represent a business action, abstracts the script portion of the same attribute, forms a shared object component, and generates a unique component identifier.
  • the business script parser uses an XML parser to obtain the following information of the XML document: all the tags appearing in the document, the tags are used to describe the type or characteristics of the data, can be understood as a field name; all attributes of the tag can be understood The type of the field; the subtag under the tag; the number of subtags; whether the tag is empty or contains text; the data type of the tag and attribute; the default value of the tag attribute and a fixed value.
  • the above information is used by the business script parser to perform grammatical structure analysis of XML business scripts.
  • a business script processor configured to query a business script according to a service request, generate a service Execute the code and instantiate the shared business object component in the business script during the process of generating the business execution code.
  • the device for improving the efficiency of executing a business script further includes a service script buffer for buffering a standard extensible service script to be analyzed and a shared service object component.
  • a service script buffer for buffering a standard extensible service script to be analyzed and a shared service object component.
  • the business script cache caches the extensible business script, it is also used to maintain the script storage list, including the business script identifier generated by the business script converter; when the business script cache cache caches the shared business object component, it is also used to maintain the object component business execution.
  • the code instance corresponds to the table.
  • business script buffer is further used to determine whether to cache the standard extensible business script in memory according to the frequency of the business script call.
  • the service script processor is configured to generate a service execution code according to the service script identifier in the service script cache script storage list when the corresponding service script is not loaded, and generate a service execution code according to the service request identifier;
  • the shared business object component in the business script is instantiated and stored in the business script cache component component business execution code instance correspondence table.
  • the service script processor is specifically configured to query the business script according to the business script identifier in the service script cache script storage list, generate the business execution code, initialize the execution count to 1 and record the first execution time, and generate the same
  • the business execution code is coded, the shared business object component in the business script is instantiated, and stored in the business script cache component component business execution code instance correspondence table.
  • the service script processor is further configured to: according to the service request identifier, when the query corresponding business script has been loaded, the number of executions of the business script is added and the execution time is recorded, and the service script cache component component business execution code instance correspondence table is searched And return the business execution code execution.
  • the service script buffer may specifically include a buffer query interface, a buffer write interface, and a storage unit.
  • the buffer query interface, the input parameter of the query interface is the query type, the business script identifier generated by the business script converter, the storage area corresponding to the storage unit is queried according to the query type, and the search is performed according to the identifier, and the query result is fed back to the called Module.
  • the buffer write interface, the input parameters of the call input interface are write type, identification, write data, and the write type is consistent with the query type.
  • the storage unit divides the storage area fragment management according to the query type, and establishes a business script identifier and associated content generated by the business script converter, that is, a standard extensible business script index table.
  • statistics can be performed according to the number of executions and the start and end time of the script execution, for example, how many times are executed in a unit time, or the number of executions per unit time is increased compared with the previous unit time, depending on the actual business scenario. Then, according to the statistical mode, the execution frequency of the script is determined to determine whether it is saved in the buffer.
  • FIG. 2 it is a flowchart of a method for improving the efficiency of executing a business script according to an embodiment of the present invention.
  • the method for improving the efficiency of business script execution of the present invention includes the following steps:
  • Step 100 The service script extraction interface extracts various types of service scripts when the service system loads the service; wherein, in step 100, the service script extraction interface extracts various types of service scripts, including service script identifiers, business script types, and services.
  • Step 200 The business script converter converts various types of business scripts extracted by the business script extraction interface into standard extensible business scripts, generates a new business script identifier, and sends a standard extensible business script to the business script parser;
  • the standard extensible business script can preferably be a standard XML script;
  • step 200 the business script converter converts various types of business scripts extracted by the business script extraction interface into standard extensible business scripts according to different types of business script types.
  • Step 300 The business script parser analyzes the standard extensible business script converted by the business script converter, and extracts a set of consecutive tokens representing a business action to form a common business object component;
  • step 300 when the business script parser analyzes the standard XML business script, the XML parser is used to obtain all the tags of the XML document, and at the same time, obtain all the attributes of the mark, according to the business rules defined by the XML business script for specific requirements.
  • a set of consecutive tokens representing a business action is extracted to abstract out the script portion of the same attribute, forming a shared object component, and generating a unique component tag identifier.
  • Step 400 The service script processor identifies the service script according to the service script identifier in the service script cache script storage list, generates a service execution code, and generates a service execution code according to the service request identifier.
  • the shared business object component instantiates the code.
  • step 400 the method further includes the following steps: After the business script processor instantiates the code of the shared business object component in the script, the business script processor is stored in the business script cache component component business execution code instance correspondence table.
  • the service script processor identifies, according to the service request identifier, when the corresponding service script has been loaded, the number of executions of the business script is increased, and the execution time is recorded, and the execution code execution is returned.
  • the apparatus and method for improving the execution efficiency of a business script extracts a business script through a business script acquisition interface when the service system loads the service, and uses a business script converter to standardize and convert various types of business scripts. Then use the business script parser to componentize the shared part of the business script. On the one hand, the preloading mode is used to improve the reading time of the script.
  • the script analysis is performed to extract the shared business object component, thereby reducing
  • the processing difficulty of the business script interpretation increases the processing time of the business script;
  • the present invention also provides a service script buffer, which caches the shared business object component cache, XML formatted business script cache, business execution code, during the execution of the entire business, all business script calls are read in the buffer after analysis, when there are multiple users calling the same business, share the same
  • the business script improves the analysis efficiency of the business script parser for the standard extensible business script, and improves the execution code generation of the business script by the business script processor, thereby improving the execution efficiency of the entire business script.

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Stored Programmes (AREA)
  • Telephonic Communication Services (AREA)

Abstract

An apparatus and a method for improving execution efficiency of service scripts are provided. The apparatus includes a service script analyzer and a service script processor. The service script analyzer is used for analyzing various types of extracted service scripts, and extracting a set of series tags expressing a service action to form a common service object component. The service script processor is used for querying the service scripts according to a service request identifier, generating service executable code, and performing code instantiation on the common service object component in the scripts in the course of generating the service executable code. The solution is able to enhance the generation of the executable code of the service scripts with a service processor and thus improve the execution efficiency of the entire service scripts.

Description

一种提升业务脚本执行效率的装置及方法 技术领域  Device and method for improving efficiency of business script execution
本发明涉及业务系统的开发技术, 特别涉及一种提升业务脚本执行效 率的装置及方法。 背景技术  The present invention relates to a technology for developing a business system, and more particularly to an apparatus and method for improving the efficiency of execution of a business script. Background technique
随着社会不断的进步、 科技的飞速发展, 电信行业由传统的语音业务 向数据业务发展, 窄带业务向宽带业务发展, 固定业务向移动业务发展, 同时业务也越来越趋于客户化、 定制化、 个性化。 电信业务的飞速发展对 业务系统的要求越来越高, 业务系统需要承载的业务越来越多, 越来越复 杂。 而业务数量和复杂度的增加, 直接导致了业务脚本数量庞大, 逻辑复 杂, 难于管理, 业务脚本执行效率随之降低。  With the continuous advancement of society and the rapid development of science and technology, the telecommunications industry has evolved from traditional voice services to data services, narrowband services to broadband services, fixed services to mobile services, and services have become more customized and customized. Personalization. The rapid development of telecommunication services has become more and more demanding on business systems, and business systems need to carry more and more services, which are becoming more and more complex. The increase in the number and complexity of services directly leads to a large number of business scripts, complex logic, difficult management, and reduced efficiency of business script execution.
一般业务系统对业务脚本的执行方法为: 业务系统响应服务请求, 发 起业务处理流程, 查找相应业务脚本并解释业务脚本, 然后根据脚本内容 查找需要执行的标记动作, 执行相应动作, 向平台侧发起动作指令, 实现 服务请求功能; 一次服务请求结束, 若再次收到相同或不同的服务请求, 执行与上述相同的处理流程。 同时, 业务系统中可能有多种不同的业务运 行, 也可能有多个用户在同时使用同一种业务, 此时需要多次从脚本存放 位置进行读取, 并分析业务脚本, 曾经被激活的业务逻辑无法被重复的利 用。 发明内容  The general business system performs the business script on the following steps: The service system responds to the service request, initiates the business process, finds the corresponding business script and interprets the business script, and then searches for the tag action to be executed according to the script content, performs the corresponding action, and initiates to the platform side. The action instruction implements the service request function; one service request ends, and if the same or different service request is received again, the same processing flow as above is executed. At the same time, there may be many different business operations in the business system, and multiple users may use the same service at the same time. In this case, it is necessary to read from the script storage location multiple times, and analyze the business scripts, the services that have been activated. Logic cannot be reused. Summary of the invention
有鉴于此, 本发明的主要目的在于, 提供一种提升业务脚本执行效率 的装置及方法, 能够提升整个业务脚本的执行效率。 一种提升业务脚本执行效率的装置, 包括: 业务脚本分析器以及业务 脚本处理器, 其中, In view of this, the main purpose of the present invention is to provide an apparatus and method for improving the efficiency of executing a business script, which can improve the execution efficiency of the entire business script. An apparatus for improving the efficiency of executing a business script, comprising: a business script parser and a business script processor, wherein
所述业务脚本分析器, 用于对提取的各种类型业务脚本进行分析, 将 连续的表示一个业务动作的一组标记提取出来形成共用业务对象组件; 所述业务脚本处理器, 用于根据业务请求标识, 查询业务脚本, 生成 业务执行代码, 并在生成业务执行代码的过程中将业务脚本中的共用业务 对象组件进行代码实例化。  The service script analyzer is configured to analyze the extracted various types of service scripts, and extract a set of consecutive tokens representing a business action to form a shared service object component; the service script processor is configured to be used according to the service Request identification, query business scripts, generate business execution code, and instantiate code for shared business object components in business scripts during the process of generating business execution code.
所述业务脚本处理器, 进一步用于: 在将业务脚本中的共用业务对象 组件进行代码实例化后, 存储在对象组件业务执行代码实例对应表中。  The service script processor is further configured to: after instantiating the code of the shared business object component in the business script, storing in the object component business execution code instance correspondence table.
所述业务脚本处理器, 进一步用于: 当再次根据业务请求查询相应业 务脚本时, 在所述对象组件业务执行代码实例对应表中查找。  The service script processor is further configured to: when the corresponding service script is queried according to the service request, search in the object component service execution code instance correspondence table.
所述装置进一步包括: 业务脚本提取接口和业务脚本转化器, 其中, 所述业务脚本提取接口, 用于在业务系统加载服务时提取各种类型业 务脚本, 包括业务脚本类型;  The device further includes: a service script extraction interface and a service script converter, wherein the service script extraction interface is configured to extract various types of service scripts, including a service script type, when the service system loads the service;
所述业务脚本转化器, 用于根据业务脚本类型釆用不同的转化模型, 将业务脚本提取接口提取的各种类型业务脚本转换成标准的可扩展业务脚 本, 生成新的业务脚本标识, 并将标准的可扩展业务脚本送给业务脚本分 析器。  The business script converter is configured to convert various types of business scripts extracted by the business script extraction interface into standard extensible business scripts according to different types of business scripts, generate new business script identifiers, and generate new business script identifiers, and Standard extensible business scripts are sent to the business script parser.
所述业务脚本分析器, 进一步用于: 将所述共用业务对象组件对应的 组件标识插入业务脚本替换原脚本语句, 并将共用业务对象组件及其对应 的组件标识緩存。  The service script analyzer is further configured to: insert a component identifier corresponding to the shared business object component into a business script to replace the original script statement, and cache the shared business object component and its corresponding component identifier.
所述装置进一步包括: 业务脚本緩存器, 用于緩存待分析的标准的可 扩展业务脚本以及共用业务对象组件。  The apparatus further includes: a service script buffer for caching standard extensible business scripts to be analyzed and a common business object component.
所述业务脚本緩存器, 进一步用于: 根据业务脚本调用的频率决定是 否将标准的可扩展业务脚本緩存在内存中。 一种提升业务脚本执行效率的方法, 包括下列步骤: The service script buffer is further configured to: determine whether to cache the standard extensible business script in the memory according to the frequency of the service script call. A method to improve the efficiency of business script execution, including the following steps:
A: 业务脚本分析器对提取的各种类型业务脚本进行分析, 将连续的表 示一个业务动作的一组标记提取出来形成共用业务对象组件;  A: The business script parser analyzes the extracted various types of business scripts, and extracts a set of consecutive tokens representing a business action to form a common business object component;
B: 业务脚本处理器根据业务请求标识, 查询业务脚本, 生成业务执行 代码, 并在生成业务执行代码的过程中将业务脚本中的共用业务对象组件 进行代码实例化。  B: The business script processor queries the business script according to the service request identifier, generates the business execution code, and instantiates the shared business object component in the business script in the process of generating the business execution code.
在所述步骤 B中, 进一步包括下列步骤: 所述业务脚本处理器在将业 务脚本中的共用业务对象组件进行代码实例化后, 存储在对象组件业务执 行代码实例对应表中。  In the step B, the method further includes the following steps: after the service script processor instantiates the shared business object component in the service script, the business script processor is stored in the object component business execution code instance correspondence table.
在所述步骤 B中, 进一步包括下列步骤: 当再次根据业务请求查询相 应业务脚本时, 在所述对象组件业务执行代码实例对应表中查找。  In the step B, the method further includes the following steps: when querying the corresponding service script according to the service request again, searching in the object component business execution code instance correspondence table.
本发明的有益效果是: 依照本发明的提升业务脚本执行效率的装置及 方法, 在业务系统加载服务时就通过业务脚本获取接口提取业务脚本, 提 高了业务脚本的读取时间; 使用业务脚本转化器对各种类型业务脚本进行 标准化转化, 然后利用业务脚本分析器对业务脚本中的共用部分进行组件 化, 降低了业务脚本解释的处理难度, 提高了业务脚本的处理时间; 当存 在多个用户调用相同的业务时, 共用相同的业务脚本, 提高了业务脚本分 析器对标准的可扩展业务脚本的分析效率, 提高了业务脚本处理器对业务 脚本的执行代码生成, 从而提升了整个业务脚本的执行效率。 附图说明  The invention has the following advantages: The device and the method for improving the execution efficiency of the business script according to the present invention, when the service system loads the service, the business script is extracted through the business script acquisition interface, thereby improving the reading time of the business script; The device normalizes and transforms various types of business scripts, and then uses the business script analyzer to componentize the shared parts in the business scripts, which reduces the processing difficulty of the business script interpretation and improves the processing time of the business scripts; When the same service is invoked, the same business script is shared, which improves the analysis efficiency of the business script parser for the standard extensible business script, and improves the execution code generation of the business script by the business script processor, thereby improving the entire business script. effectiveness. DRAWINGS
图 1为本发明实施例的提升业务脚本执行效率的装置的结构示意图; 图 2为本发明实施例的提升业务脚本执行效率的流程示意图。 具体实施方式  FIG. 1 is a schematic structural diagram of an apparatus for improving service script execution efficiency according to an embodiment of the present invention; FIG. 2 is a schematic flowchart of improving execution efficiency of a service script according to an embodiment of the present invention. detailed description
并发处理是业务对系统环境的一个重要要求, 也是影响系统性能的一 个重要因素, 但是现有技术不能高效的实现业务脚本的并发处理。 因此, 为了实现业务脚本的执行效率的提升, 必须从业务系统运行过程中的业务 脚本处理方法和存取技术方面进行考虑。 Concurrency processing is an important requirement of the business to the system environment, and it is also a factor affecting system performance. An important factor, but the prior art cannot efficiently implement concurrent processing of business scripts. Therefore, in order to improve the efficiency of execution of business scripts, it is necessary to consider the business script processing methods and access technologies in the process of running the business system.
以下, 参考附图 1~2详细描述本发明的提升业务脚本执行效率的装置 及方法。  Hereinafter, an apparatus and method for improving the efficiency of executing a business script of the present invention will be described in detail with reference to FIGS. 1 to 2.
需要说明的是, 本发明以电信的业务系统为例, 说明本发明的提升业 务脚本执行效率的装置及方法, 但是本发明并不局限于此, 还可以适用于 金融、 广播电视等领域适合通过业务脚本执行相应业务处理的业务系统。  It should be noted that the present invention uses the telecom service system as an example to describe the apparatus and method for improving the execution efficiency of the service script of the present invention. However, the present invention is not limited thereto, and may be applicable to the fields of finance, broadcasting, television, and the like. The business script executes the business system for the corresponding business processing.
如图 1 所示, 为本发明实施例的提升业务脚本执行效率的装置的结构 示意图。  As shown in FIG. 1 , it is a schematic structural diagram of an apparatus for improving the efficiency of executing a business script according to an embodiment of the present invention.
本发明的提升业务脚本执行效率的装置, 包括业务脚本提取接口、 业 务脚本转化器、 业务脚本分析器以及业务脚本处理器。  The device for improving the execution efficiency of the business script of the present invention comprises a business script extraction interface, a business script converter, a business script analyzer and a business script processor.
其中, 业务脚本提取接口, 用于在业务系统加载服务时提取各种类型 业务脚本, 包括业务脚本类型、 业务脚本标识和业务脚本描述语句, 其中, 业务脚本标识, 是用于区别不同的业务脚本的唯一序号。  The service script extraction interface is configured to extract various types of service scripts when the service system loads the service, including a service script type, a service script identifier, and a service script description statement, where the service script identifier is used to distinguish different service scripts. The unique serial number.
业务脚本转化器, 用于将业务脚本提取接口提取的各种类型业务脚本 根据业务脚本类型釆用不同的转化模型 ,转换成标准的可扩展业务脚本(例 如 XML业务脚本), 生成新的业务脚本标识, 并将标准的可扩展业务脚本 送给业务脚本分析器。  The business script converter is used to convert various types of business scripts extracted by the business script extraction interface into different extensible business scripts (such as XML business scripts) according to the business script type, and generate new business scripts. Identify and send standard extensible business scripts to the Business Script Analyzer.
其中, 业务脚本转化器, 进一步用于将新的业务脚本标识与转化前的 业务脚本标识相对应, 并保存该对应关系。  The service script converter is further configured to correspond to the new service script identifier and the business script identifier before the conversion, and save the correspondence.
另外, 业务脚本转化器, 将业务脚本提取接口提取的各种类型业务脚 本根据业务脚本类型釆用不同的转化模型, 转换成标准的可扩展业务脚本 的原因是: 如果不将各种类型的业务脚本转化成统一格式、 语义及语法的 标准脚本, 则无法对业务脚本本身要实现的功能进行自动化的分析和执行, 且不便于对业务脚本进行统一管理和无法抽取相同功能的业务脚本。 由于In addition, the business script converter converts various types of business scripts extracted by the business script extraction interface into different standard conversion models according to the type of business scripts, and converts them into standard extensible business scripts: The standard scripts that translate scripts into uniform formats, semantics, and grammars do not automate the analysis and execution of the functions that the business script itself implements. It is not convenient for unified management of business scripts and business scripts that cannot extract the same functions. due to
XML ( Extensible Markup Language, 可扩展标记语言)具有可读性、 可移 植性、 可扩展性等优点, 结合业务脚本树形结构、 有状态标记和转移规则 等特点, 根据具体的业务功能需求来描述, 由标记来完成标识处理程序。 另夕卜, XML可以自己定义标记, 标记用以描述数据的类型或特性, 可以理 解为一种字段名, 同时 XML具有数据与格式分离设计的特性, 可以将各种 格式的数据转化成 XML, 因此本发明釆用 XML作为业务脚本的最佳载体, 根据原业务脚本的数据格式定义 XML的标记后, 就生成了一个以 XML为 载体的标准业务脚本。 XML (Extensible Markup Language) is readable, portable, and extensible. It combines the characteristics of business script tree structure, stateful markup, and transfer rules to describe the specific business function requirements. , the markup is used to complete the identity handler. In addition, XML can define tags by itself. Tags can be used to describe the type or characteristics of data. It can be understood as a field name. At the same time, XML has the characteristics of separate data and format design, and can convert various formats of data into XML. Therefore, the present invention uses XML as the best carrier of the business script, and after defining the XML mark according to the data format of the original business script, a standard business script based on XML is generated.
业务脚本分析器, 用于对业务脚本转化器转换的标准的可扩展业务脚 本进行分析, 将连续的表示一个业务动作的一组标记提取出来形成共用业 务对象组件, 并生成唯一的组件标识, 并将组件标识插入业务脚本替换原 脚本语句, 并将共用业务对象组件及其对应的组件标识緩存。  a business script parser for analyzing a standard extensible business script converted by a business script converter, extracting a set of consecutive tokens representing a business action to form a common business object component, and generating a unique component identifier, and Insert the component ID into the business script to replace the original script statement, and cache the shared business object component and its corresponding component ID.
例如, 对于标准的可扩展业务脚本为标准的 XML业务脚本时, 业务脚 本分析器对 XML业务脚本进行分析, 使用 XML解析程序获取 XML文档 所有标记, 同时获取标记的所有属性, 根据 XML业务脚本面向特定需求定 义的业务规则, 将连续的表示一个业务动作的一组标记提取出来抽象出相 同属性的脚本部分, 形成共用对象组件, 并生成唯一的组件标识。  For example, when the standard extensible business script is a standard XML business script, the business script parser analyzes the XML business script, uses the XML parser to get all the tags of the XML document, and obtains all the attributes of the tag, according to the XML business script. A business rule defined by a specific requirement extracts a set of tokens that continuously represent a business action, abstracts the script portion of the same attribute, forms a shared object component, and generates a unique component identifier.
具体地, 业务脚本分析器使用 XML解析程序获取 XML文档的以下信 息: 出现在文档中所有标记, 标记用以描述数据的类型或特性, 可以理解 为一种字段名; 标记的所有属性, 可以理解为字段的类型; 标记下的子标 记; 子标记的数目; 标记是否为空或者是否包含文本; 标记和属性的数据 类型;标记属性的默认值及固定值。以上信息用于业务脚本分析器进行 XML 业务脚本的语法结构分析。  Specifically, the business script parser uses an XML parser to obtain the following information of the XML document: all the tags appearing in the document, the tags are used to describe the type or characteristics of the data, can be understood as a field name; all attributes of the tag can be understood The type of the field; the subtag under the tag; the number of subtags; whether the tag is empty or contains text; the data type of the tag and attribute; the default value of the tag attribute and a fixed value. The above information is used by the business script parser to perform grammatical structure analysis of XML business scripts.
业务脚本处理器, 用于根据业务请求标识, 查询业务脚本, 生成业务 执行代码, 并在生成业务执行代码的过程中将业务脚本中的共用业务对象 组件进行代码实例化。 A business script processor, configured to query a business script according to a service request, generate a service Execute the code and instantiate the shared business object component in the business script during the process of generating the business execution code.
本发明的提升业务脚本执行效率的装置, 进一步包括业务脚本緩存器, 用于緩存待分析的标准的可扩展业务脚本以及共用业务对象组件。 业务脚 本緩存器緩存可扩展业务脚本时, 还用于维护脚本存储列表, 其中包括业 务脚本转化器生成的业务脚本标识; 业务脚本緩存器緩存共用业务对象组 件时, 还用于维护对象组件业务执行代码实例对应表。  The device for improving the efficiency of executing a business script further includes a service script buffer for buffering a standard extensible service script to be analyzed and a shared service object component. When the business script cache caches the extensible business script, it is also used to maintain the script storage list, including the business script identifier generated by the business script converter; when the business script cache caches the shared business object component, it is also used to maintain the object component business execution. The code instance corresponds to the table.
另外, 业务脚本緩存器, 进一步用于根据业务脚本调用的频率决定是 否将标准的可扩展业务脚本緩存在内存中。  In addition, the business script buffer is further used to determine whether to cache the standard extensible business script in memory according to the frequency of the business script call.
另外, 业务脚本处理器, 用于根据业务请求标识, 在查询相应的业务 脚本未被加载过时, 在业务脚本緩存器脚本存储列表中根据业务脚本标识 查询业务脚本, 生成业务执行代码; 生成业务执行代码时, 会将业务脚本 中的共用业务对象组件进行代码实例化后, 存储在业务脚本緩存器对象组 件业务执行代码实例对应表中。  In addition, the service script processor is configured to generate a service execution code according to the service script identifier in the service script cache script storage list when the corresponding service script is not loaded, and generate a service execution code according to the service request identifier; When the code is coded, the shared business object component in the business script is instantiated and stored in the business script cache component component business execution code instance correspondence table.
其中, 业务脚本处理器, 具体用于在业务脚本緩存器脚本存储列表中 根据业务脚本标识查询业务脚本, 生成业务执行代码后, 将执行次数初始 化为 1 并记录第一次执行时间, 同时将生成业务执行代码时业务脚本中的 共用业务对象组件进行代码实例化后, 存储在业务脚本緩存器对象组件业 务执行代码实例对应表中。  The service script processor is specifically configured to query the business script according to the business script identifier in the service script cache script storage list, generate the business execution code, initialize the execution count to 1 and record the first execution time, and generate the same When the business execution code is coded, the shared business object component in the business script is instantiated, and stored in the business script cache component component business execution code instance correspondence table.
业务脚本处理器, 进一步用于根据业务请求标识, 在查询相应的业务 脚本已被加载过时, 业务脚本执行次数加一并记录执行时间, 在业务脚本 緩存器对象组件业务执行代码实例对应表中查找, 并返回业务执行代码执 行。  The service script processor is further configured to: according to the service request identifier, when the query corresponding business script has been loaded, the number of executions of the business script is added and the execution time is recorded, and the service script cache component component business execution code instance correspondence table is searched And return the business execution code execution.
另外, 业务脚本緩存器, 具体可以包括緩存器查询接口、 緩存器写入 接口和存储单元。 其中, 緩存器查询接口, 调用查询接口的输入参数为查询类型、 业务 脚本转化器生成的业务脚本标识, 根据查询类型查询存储单元对应的存储 区域, 根据标识进行搜索, 将查询结果反馈给调用的模块。 In addition, the service script buffer may specifically include a buffer query interface, a buffer write interface, and a storage unit. The buffer query interface, the input parameter of the query interface is the query type, the business script identifier generated by the business script converter, the storage area corresponding to the storage unit is queried according to the query type, and the search is performed according to the identifier, and the query result is fed back to the called Module.
緩存器写入接口, 调用写入接口的输入参数为写入类型、 标识、 写入 数据, 写入类型与查询类型一致。  The buffer write interface, the input parameters of the call input interface are write type, identification, write data, and the write type is consistent with the query type.
存储单元, 按查询类型划分存储区域分片管理, 建立业务脚本转化器 生成的业务脚本标识和关联内容、 即标准的可扩展业务脚本索引表。  The storage unit divides the storage area fragment management according to the query type, and establishes a business script identifier and associated content generated by the business script converter, that is, a standard extensible business script index table.
另外, 可以根据脚本执行时的执行次数和起止时间进行统计, 比如说 单位时间内执行了多少次, 或者说单位时间内执行次数比上个单位时间内 增加的情况, 具体视实际业务场景而定, 然后根据统计模式确定脚本的执 行频率, 确定是否保存在緩存器中。  In addition, statistics can be performed according to the number of executions and the start and end time of the script execution, for example, how many times are executed in a unit time, or the number of executions per unit time is increased compared with the previous unit time, depending on the actual business scenario. Then, according to the statistical mode, the execution frequency of the script is determined to determine whether it is saved in the buffer.
如图 2所示, 为本发明实施例的提升业务脚本执行效率的方法的流程 图。  As shown in FIG. 2, it is a flowchart of a method for improving the efficiency of executing a business script according to an embodiment of the present invention.
本发明的提升业务脚本执行效率的方法, 包括下列步骤:  The method for improving the efficiency of business script execution of the present invention includes the following steps:
步骤 100:业务脚本提取接口在业务系统加载服务时提取各种类型业务 脚本; 其中, 在步骤 100 中, 业务脚本提取接口在提取各种类型业务脚本 时, 包括业务脚本标识、 业务脚本类型和业务脚本描述语句, 其中, 业务 脚本标识, 是用于区别不同的业务脚本的唯一序号。  Step 100: The service script extraction interface extracts various types of service scripts when the service system loads the service; wherein, in step 100, the service script extraction interface extracts various types of service scripts, including service script identifiers, business script types, and services. The script description statement, where the business script identifier is a unique serial number used to distinguish different business scripts.
步骤 200:业务脚本转化器将业务脚本提取接口提取的各种类型业务脚 本转换成标准的可扩展业务脚本, 生成新的业务脚本标识, 并将标准的可 扩展业务脚本送给业务脚本分析器; 其中, 标准的可扩展业务脚本优选地 可以为标准的 XML脚本;  Step 200: The business script converter converts various types of business scripts extracted by the business script extraction interface into standard extensible business scripts, generates a new business script identifier, and sends a standard extensible business script to the business script parser; Wherein, the standard extensible business script can preferably be a standard XML script;
另外, 在步骤 200 中, 业务脚本转化器根据业务脚本类型釆用不同的 转化模型, 将业务脚本提取接口提取的各种类型业务脚本转换成标准的可 扩展业务脚本。 步骤 300:业务脚本分析器对所述业务脚本转化器转换的标准的可扩展 业务脚本进行分析, 将连续的表示一个业务动作的一组标记提取出来形成 共用业务对象组件; In addition, in step 200, the business script converter converts various types of business scripts extracted by the business script extraction interface into standard extensible business scripts according to different types of business script types. Step 300: The business script parser analyzes the standard extensible business script converted by the business script converter, and extracts a set of consecutive tokens representing a business action to form a common business object component;
其中, 在步骤 300中, 业务脚本分析器对标准的 XML业务脚本进行分 析时, 使用 XML解析程序获取 XML文档所有标记, 同时获取标记的所有 属性, 根据 XML业务脚本面向特定需求定义的业务规则, 将连续的表示一 个业务动作的一组标记提取出来抽象出相同属性的脚本部分, 形成共用对 象组件, 并生成唯一的组件标记标识。  In step 300, when the business script parser analyzes the standard XML business script, the XML parser is used to obtain all the tags of the XML document, and at the same time, obtain all the attributes of the mark, according to the business rules defined by the XML business script for specific requirements. A set of consecutive tokens representing a business action is extracted to abstract out the script portion of the same attribute, forming a shared object component, and generating a unique component tag identifier.
步骤 400: 业务脚本处理器根据业务请求标识, 在查询相应的业务脚本 未被加载过时, 在业务脚本緩存器脚本存储列表中根据业务脚本标识查询 业务脚本, 生成业务执行代码, 并将脚本中的共用业务对象组件进行代码 实例化。  Step 400: The service script processor identifies the service script according to the service script identifier in the service script cache script storage list, generates a service execution code, and generates a service execution code according to the service request identifier. The shared business object component instantiates the code.
其中, 在步骤 400 中, 进一步包括下列步骤: 业务脚本处理器在将脚 本中的共用业务对象组件进行代码实例化后, 存储在业务脚本緩存器对象 组件业务执行代码实例对应表中。  In step 400, the method further includes the following steps: After the business script processor instantiates the code of the shared business object component in the script, the business script processor is stored in the business script cache component component business execution code instance correspondence table.
进一步地, 在步骤 400 中, 业务脚本处理器根据业务请求标识, 在查 询相应的业务脚本已被加载过时, 业务脚本执行次数加一并记录执行时间, 并返回业务执行代码执行。  Further, in step 400, the service script processor identifies, according to the service request identifier, when the corresponding service script has been loaded, the number of executions of the business script is increased, and the execution time is recorded, and the execution code execution is returned.
综上所述, 依照本发明的提升业务脚本执行效率的装置及方法, 在业 务系统加载服务时就通过业务脚本获取接口提取业务脚本, 使用业务脚本 转化器对各种类型业务脚本进行标准化转化, 然后利用业务脚本分析器对 业务脚本中的共用部分进行组件化, 一方面釆用预加载模式提高了脚本的 读取时间, 另一方面通过统一脚本格式, 进行脚本分析提取共用业务对象 组件, 降低了业务脚本解释的处理难度, 提高了业务脚本的处理时间; 此 外, 本发明还提供了业务脚本緩存器, 通过緩存共用业务对象组件緩存、 XML格式化业务脚本緩存、 业务执行代码, 在整个业务的执行过程中, 所 有的业务脚本调用都在已经分析后的緩存器中读取, 当存在多个用户调用 相同的业务时, 共用相同的业务脚本, 提高了业务脚本分析器对标准的可 扩展业务脚本的分析效率, 提高了业务脚本处理器对业务脚本的执行代码 生成, 从而提升了整个业务脚本的执行效率。 In summary, the apparatus and method for improving the execution efficiency of a business script according to the present invention extracts a business script through a business script acquisition interface when the service system loads the service, and uses a business script converter to standardize and convert various types of business scripts. Then use the business script parser to componentize the shared part of the business script. On the one hand, the preloading mode is used to improve the reading time of the script. On the other hand, through the unified script format, the script analysis is performed to extract the shared business object component, thereby reducing The processing difficulty of the business script interpretation increases the processing time of the business script; in addition, the present invention also provides a service script buffer, which caches the shared business object component cache, XML formatted business script cache, business execution code, during the execution of the entire business, all business script calls are read in the buffer after analysis, when there are multiple users calling the same business, share the same The business script improves the analysis efficiency of the business script parser for the standard extensible business script, and improves the execution code generation of the business script by the business script processor, thereby improving the execution efficiency of the entire business script.
以上是为了使本领域普通技术人员理解本发明, 而对本发明所进行的 详细描述, 但可以想到, 在不脱离本发明的权利要求所涵盖的范围内还可 以做出其它的变化和修改, 这些变化和修改均在本发明的保护范围内。  The above is a detailed description of the present invention to enable those skilled in the art to understand the present invention. It is contemplated that other changes and modifications may be made without departing from the scope of the invention as claimed. Variations and modifications are within the scope of the invention.

Claims

权利要求书 Claim
1. 一种提升业务脚本执行效率的装置, 其特征在于, 包括: 业务脚本 分析器以及业务脚本处理器, 其中,  An apparatus for improving the efficiency of executing a business script, comprising: a business script parser and a business script processor, wherein
所述业务脚本分析器, 用于对提取的各种类型业务脚本进行分析, 将 连续的表示一个业务动作的一组标记提取出来形成共用业务对象组件; 所述业务脚本处理器, 用于根据业务请求标识, 查询业务脚本, 生成 业务执行代码, 并在生成业务执行代码的过程中将业务脚本中的共用业务 对象组件进行代码实例化。  The service script analyzer is configured to analyze the extracted various types of service scripts, and extract a set of consecutive tokens representing a business action to form a shared service object component; the service script processor is configured to be used according to the service Request identification, query business scripts, generate business execution code, and instantiate code for shared business object components in business scripts during the process of generating business execution code.
2. 如权利要求 1所述的提升业务脚本执行效率的装置, 其特征在于, 所述业务脚本处理器, 进一步用于: 在将业务脚本中的共用业务对象组件 进行代码实例化后, 存储在对象组件业务执行代码实例对应表中。  The device for improving the efficiency of the execution of the business script according to claim 1, wherein the service script processor is further configured to: after instantiating the code of the shared business object component in the business script, storing The object component business execution code instance corresponds to the table.
3. 如权利要求 2所述的提升业务脚本执行效率的装置, 其特征在于, 所述业务脚本处理器, 进一步用于: 当再次根据业务请求查询相应业务脚 本时, 在所述对象组件业务执行代码实例对应表中查找。  The device for improving the efficiency of the execution of the service script according to claim 2, wherein the service script processor is further configured to: when the corresponding service script is queried according to the service request, perform the service on the object component The code instance corresponds to the lookup in the table.
4. 如权利要求 1所述的提升业务脚本执行效率的装置, 其特征在于, 所述装置进一步包括: 业务脚本提取接口和业务脚本转化器, 其中,  The device for improving the efficiency of the execution of the service script according to claim 1, wherein the device further comprises: a service script extraction interface and a service script converter, wherein
所述业务脚本提取接口, 用于在业务系统加载服务时提取各种类型业 务脚本, 包括业务脚本类型;  The service script extraction interface is configured to extract various types of service scripts, including a service script type, when the service system loads the service;
所述业务脚本转化器, 用于根据业务脚本类型釆用不同的转化模型, 将业务脚本提取接口提取的各种类型业务脚本转换成标准的可扩展业务脚 本, 生成新的业务脚本标识, 并将标准的可扩展业务脚本送给业务脚本分 浙哭  The business script converter is configured to convert various types of business scripts extracted by the business script extraction interface into standard extensible business scripts according to different types of business scripts, generate new business script identifiers, and generate new business script identifiers, and Standard extensible business scripts are sent to business scripts
5. 如权利要求 1所述的提升业务脚本执行效率的装置, 其特征在于, 所述业务脚本分析器, 进一步用于: 将所述共用业务对象组件对应的组件 标识插入业务脚本替换原脚本语句, 并将共用业务对象组件及其对应的组 件标识緩存。 The device for improving the efficiency of executing a business script according to claim 1, wherein the service script analyzer is further configured to: insert a component identifier corresponding to the shared service object component into a business script to replace the original script statement. And will share the business object component and its corresponding group ID cache.
6. 如权利要求 1至 5中任一项所述的提升业务脚本执行效率的装置, 其特征在于, 所述装置进一步包括: 业务脚本緩存器, 用于緩存待分析的 标准的可扩展业务脚本以及共用业务对象组件。  The device for improving the efficiency of executing a business script according to any one of claims 1 to 5, wherein the device further comprises: a service script buffer for buffering a standard extensible business script to be analyzed And shared business object components.
7. 如权利要求 6所述的提升业务脚本执行效率的装置, 其特征在于, 所述业务脚本緩存器, 进一步用于: 根据业务脚本调用的频率决定是否将 标准的可扩展业务脚本緩存在内存中。  The device for improving the efficiency of the execution of the service script according to claim 6, wherein the service script buffer is further configured to: determine whether to cache the standard extensible service script in the memory according to the frequency of the service script call; in.
8. 一种提升业务脚本执行效率的方法, 其特征在于, 包括下列步骤: A: 业务脚本分析器对提取的各种类型业务脚本进行分析, 将连续的表 示一个业务动作的一组标记提取出来形成共用业务对象组件;  8. A method for improving the efficiency of business script execution, comprising the steps of: A: The business script parser analyzes the extracted various types of business scripts, and extracts a set of consecutive tokens representing a business action. Forming a common business object component;
B: 业务脚本处理器根据业务请求标识, 查询业务脚本, 生成业务执行 代码, 并在生成业务执行代码的过程中将业务脚本中的共用业务对象组件 进行代码实例化。  B: The business script processor queries the business script according to the service request identifier, generates the business execution code, and instantiates the shared business object component in the business script in the process of generating the business execution code.
9. 如权利要求 8所述的提升业务脚本执行效率的方法, 其特征在于, 在所述步骤 B中, 进一步包括下列步骤:  The method for improving the efficiency of executing a business script according to claim 8, wherein in the step B, the method further comprises the following steps:
所述业务脚本处理器在将业务脚本中的共用业务对象组件进行代码实 例化后, 存储在对象组件业务执行代码实例对应表中。  The service script processor, after validating the code of the shared business object component in the business script, is stored in the object component business execution code instance correspondence table.
10. 如权利要求 9所述的提升业务脚本执行效率的方法, 其特征在于, 在所述步骤 B中, 进一步包括下列步骤:  The method for improving the efficiency of executing a business script according to claim 9, wherein in the step B, the method further comprises the following steps:
当再次根据业务请求查询相应业务脚本时, 在所述对象组件业务执行 代码实例对应表中查找。  When the corresponding business script is queried according to the business request again, it is searched in the object component business execution code instance correspondence table.
PCT/CN2011/070569 2010-09-01 2011-01-25 Method and apparatus for improving execution efficiency of service scripts WO2012027975A1 (en)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN201010268929.4 2010-09-01
CN2010102689294A CN102385527A (en) 2010-09-01 2010-09-01 Device and method for improving execution efficiency of service scripts

Publications (1)

Publication Number Publication Date
WO2012027975A1 true WO2012027975A1 (en) 2012-03-08

Family

ID=45772110

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2011/070569 WO2012027975A1 (en) 2010-09-01 2011-01-25 Method and apparatus for improving execution efficiency of service scripts

Country Status (2)

Country Link
CN (1) CN102385527A (en)
WO (1) WO2012027975A1 (en)

Families Citing this family (9)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103699478A (en) * 2012-09-27 2014-04-02 中国银联股份有限公司 Test case generation system and test case generation method
CN103870274A (en) * 2014-03-14 2014-06-18 浪潮集团山东通用软件有限公司 Visual development assembly for realizing data interaction between heterogeneous systems based on web service technology
CN104182234B (en) * 2014-08-25 2017-10-10 杭州华为数字技术有限公司 A kind of method for processing business and operation system
CN104731655B (en) * 2015-04-07 2018-03-20 南京途牛科技有限公司 The sustainable operation method and system of script
CN105630752B (en) * 2015-12-25 2018-05-04 中国民航信息网络股份有限公司 The method for supporting business model quickly to change
CN109189576B (en) * 2018-08-24 2022-04-19 努比亚技术有限公司 Redis-based request processing method, server and computer-readable storage medium
CN109582303B (en) * 2018-10-31 2024-05-03 平安科技(深圳)有限公司 General component calling method, device, computer equipment and storage medium
CN109669886B (en) * 2018-12-27 2020-11-20 广州致远电子有限公司 Peripheral control system based on embedded system
CN110806934A (en) * 2019-11-15 2020-02-18 四川中电启明星信息技术有限公司 RPA technology-based intelligent all-in-one machine development and multi-service rapid processing method

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20020062354A1 (en) * 2000-11-22 2002-05-23 Suraski Ze?Apos;Ev Method and apparatus for dynamic shared-memory caching of scripting engine product
CN101645013A (en) * 2009-09-07 2010-02-10 中兴通讯股份有限公司 Plug-in type service management system and method of integrated service management platform
CN101667125A (en) * 2009-09-30 2010-03-10 北京航空航天大学 Method and system for matching operation examples in model execution of BPMN (Business Process Modeling Notation)

Family Cites Families (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101005502B (en) * 2007-01-25 2010-12-01 华为技术有限公司 Service scenario obtaining, control method and its control system and medium resource server
CN101216761A (en) * 2007-12-28 2008-07-09 北京邮电大学 Electric communication application software frame for NGN operation development

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20020062354A1 (en) * 2000-11-22 2002-05-23 Suraski Ze?Apos;Ev Method and apparatus for dynamic shared-memory caching of scripting engine product
CN101645013A (en) * 2009-09-07 2010-02-10 中兴通讯股份有限公司 Plug-in type service management system and method of integrated service management platform
CN101667125A (en) * 2009-09-30 2010-03-10 北京航空航天大学 Method and system for matching operation examples in model execution of BPMN (Business Process Modeling Notation)

Also Published As

Publication number Publication date
CN102385527A (en) 2012-03-21

Similar Documents

Publication Publication Date Title
WO2012027975A1 (en) Method and apparatus for improving execution efficiency of service scripts
US8539464B2 (en) Distributed just-in-time compilation
CN107133267B (en) Method and device for querying elastic search cluster, electronic equipment and readable storage medium
EP2524306B1 (en) Execution of dynamic languages via metadata extraction
US8959106B2 (en) Class loading using java data cartridges
US9141678B2 (en) Distributed query cache in a database system
CN110162408B (en) Data processing method, device, equipment and machine-readable medium
US8682935B2 (en) System and method for application navigation
CN110286917A (en) File packing method, device, equipment and storage medium
CN112540862A (en) Interface document data generation method, device, equipment and storage medium
KR20120025066A (en) Web browsing system and method for rendering dynamic resource uri of script
CN112559088A (en) Configuration file optimization method, device, server and storage medium
RU2005115976A (en) PARTIAL UNSOLVED INPUT DATA ANALYSIS MECHANISM
CN109284088B (en) Signaling big data processing method and electronic equipment
CN105867886B (en) Method and device for writing table
CN112883088B (en) Data processing method, device, equipment and storage medium
US20110270862A1 (en) Information processing apparatus and information processing method
CN112463533A (en) Log data analysis method and device, electronic device and storage medium
CN110968594B (en) Database query optimization method, engine and storage medium
CN114201376A (en) Log analysis method and device based on artificial intelligence, terminal equipment and medium
CN113064914A (en) Data extraction method and device
CN114063943A (en) Data transmission system, method, device, medium, and apparatus
CN109885743B (en) Webpage data information extraction method
CN106484706B (en) Method and apparatus for executing procedural SQL statements for distributed systems
CN109408368A (en) A kind of output method, storage medium and server for testing auxiliary information

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 11821005

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

122 Ep: pct application non-entry in european phase

Ref document number: 11821005

Country of ref document: EP

Kind code of ref document: A1