WO2019000722A1 - Procédé et dispositif de chargement de page web en langage de balisage hypertexte - Google Patents

Procédé et dispositif de chargement de page web en langage de balisage hypertexte Download PDF

Info

Publication number
WO2019000722A1
WO2019000722A1 PCT/CN2017/107041 CN2017107041W WO2019000722A1 WO 2019000722 A1 WO2019000722 A1 WO 2019000722A1 CN 2017107041 W CN2017107041 W CN 2017107041W WO 2019000722 A1 WO2019000722 A1 WO 2019000722A1
Authority
WO
WIPO (PCT)
Prior art keywords
webpage
client
cache
cached
resource
Prior art date
Application number
PCT/CN2017/107041
Other languages
English (en)
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 WO2019000722A1 publication Critical patent/WO2019000722A1/fr

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/90Details of database functions independent of the retrieved data types
    • G06F16/95Retrieval from the web
    • G06F16/955Retrieval from the web using information identifiers, e.g. uniform resource locators [URL]
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/90Details of database functions independent of the retrieved data types
    • G06F16/95Retrieval from the web
    • G06F16/957Browsing optimisation, e.g. caching or content distillation
    • G06F16/9574Browsing optimisation, e.g. caching or content distillation of access to content, e.g. by caching

Definitions

  • the present invention relates to the field of application development technologies, and in particular, to a hypertext markup language webpage loading method and apparatus.
  • HyperText Markup Language is a markup language applied to web pages, through which markup languages can be created. For web pages created with HTML, in order to reduce the frequency of access to physical data sources and improve running performance, such web pages will be cached while being loaded.
  • the prior art needs to initiate two network requests to the web server, which are: a network request for webpage loading and a network request for webpage caching. Not only does the load cache have low efficiency, but it also wastes traffic.
  • the present invention has been made in order to provide a hypertext markup language web page loading method and apparatus that overcomes the above problems or at least partially solves the above problems.
  • the embodiment of the invention provides a hypertext markup language webpage loading method, which is applied to a client, and the method includes:
  • the network request is initiated to the network server by using the OkHttp framework, so that a data transmission pipeline flow is established between the web server and the client;
  • the currently read network resource data is synchronously loaded and displayed, and at the same time, the currently read network resource data is synchronously cached.
  • the type of the webpage is HTML5.
  • the OkHttp framework is used to initiate a network request to the network server, so that a data transmission pipeline flow is established between the web server and the client, including :
  • the webpage resource is not cached in the client, determining whether the webpage resource belongs to a cache whitelist and a cache blacklist, wherein the cache whitelist has a first cache condition that allows resource cache, Having a second cache condition in the cache blacklist that does not allow resource cache, the first cache condition being different from the second cache condition;
  • the OkHttp framework is used to initiate a network request to the network server, so that a data transmission pipeline flow is established between the web server and the client. Otherwise, it returns empty and does not cache the web resource.
  • the determining, according to the webpage resource address, whether the webpage resource corresponding to the webpage resource address is cached in the client includes:
  • the webpage resource address exists in the cache database, it indicates that the webpage resource is cached in the client. If the webpage resource address does not exist in the cache database, the webpage resource is not Cache in the client.
  • the method before the searching for the webpage resource address in the cache data included in the cache database, the method further includes:
  • the method further comprises:
  • the synchronizing the currently read network resource data including:
  • the webpage resource address corresponding to the currently read network resource data is synchronously cached into the cache database.
  • the embodiment of the invention further provides a hypertext markup language webpage loading device, the device comprising:
  • An obtaining module configured to obtain a webpage resource address for a webpage based on a hypertext markup language
  • a determining module configured to determine, according to the webpage resource address, whether a webpage resource corresponding to the webpage resource address is cached in the client;
  • a loading module configured to read the webpage resource from the client and load display if the webpage resource is already cached in the client;
  • a request initiating module if the webpage resource is not cached in the client, using a OkHttp framework to initiate a network request to the network server, so as to establish a data transmission pipeline flow between the web server and the client;
  • Loading a cache module configured to perform synchronous loading display on the currently read network resource data in the process of reading the network resource data returned by the data transmission pipeline flow, and simultaneously perform current read network resource data Synchronous cache.
  • the embodiment of the invention further provides a computer readable storage medium, on which a computer program is stored, and when the program is executed by the processor, the following steps are implemented:
  • the network request is initiated to the network server by using the OkHttp framework, so that a data transmission pipeline flow is established between the web server and the client;
  • the currently read network resource data is synchronously loaded and displayed, and at the same time, the currently read network resource data is synchronously cached.
  • the embodiment of the invention further provides a computer device, comprising a memory, a processor and a computer program stored on the memory and operable on the processor, the processor implementing the program to implement the following steps:
  • the network request is initiated to the network server by using the OkHttp framework, so that a data transmission pipeline flow is established between the web server and the client;
  • the currently read network resource data is synchronously loaded and displayed, and at the same time, the currently read network resource data is synchronously cached.
  • the present application is directed to an HTML webpage.
  • the webpage resource address is first obtained, and then the webpage resource corresponding to the webpage resource address is cached in the client locality. If the webpage resource is cached in the client locality, the client is from the client. The local end reads the webpage resource and loads the display.
  • the OkHttp framework is used to initiate a network request to the web server, so that a data transmission pipeline flow is established between the web server and the client, and the client Read data transmission pipeline
  • the currently read network resource data is synchronously loaded and displayed, and at the same time, the currently read network resource data is synchronously cached, and the application only needs one network request to implement the pair. Uncached network resources are loaded and cached, which improves the efficiency of loading caches and saves traffic.
  • the repeated network requests can be automatically filtered out.
  • FIG. 1 is a flowchart of a method for loading a hypertext markup language webpage in an embodiment of the present invention
  • FIG. 2 is a structural diagram of a hypertext markup language webpage loading apparatus in an embodiment of the present invention
  • FIG. 3 is a schematic diagram showing the physical structure of a computer device in an embodiment of the present invention.
  • the embodiment of the present application provides a hypertext markup language webpage loading method, which is applied to a client. As shown in FIG. 1, the method includes:
  • Step 101 Obtain a webpage resource address for a webpage based on a hypertext markup language.
  • Step 102 Determine, according to the webpage resource address, whether the webpage resource corresponding to the webpage resource address is cached in the client.
  • Step 103 If the webpage resource is already cached in the client, read the webpage resource from the client and load display; if the webpage resource is not cached in the client, use The OkHttp framework initiates a network request to the network server to establish a data transmission pipeline flow between the network server and the client.
  • Step 104 During the process of reading the network resource data returned by the data transmission pipeline flow, the currently read network resource data is synchronously loaded and displayed, and at the same time, the currently read network resource data is synchronously cached.
  • the present application is directed to an HTML webpage.
  • the webpage resource address is first obtained, and then the webpage resource corresponding to the webpage resource address is cached in the client locality. If the webpage resource is cached in the client locality, the client is from the client. The local end reads the webpage resource and loads the display.
  • the OkHttp framework is used to initiate a network request to the web server, so that a data transmission pipeline flow is established between the web server and the client, and the client During the process of reading the network resource data returned by the data transmission pipeline flow, the network resource data currently read is synchronously loaded and displayed, and at the same time, the currently read network resource data is synchronously cached, and the application only needs to be once.
  • the network request can load and cache the uncached network resources, improve the efficiency of loading cache, save traffic, and automatically initiate filtering of duplicate network requests by using the OkHttp framework to initiate the network request.
  • the type of the webpage may be HTML5.
  • the method of the present application can be established in the BasicWebViewClient class, thereby replacing the WebViewClient in the prior art by using the BasicWebViewClient class.
  • the internal loading process of the BasicWebViewClient class is described in detail below.
  • step 101 first, the page resource address (Uniform Resource Locator, URL) in the web page to be loaded may be intercepted by the shouldlnterceptRequest to obtain the URL, and then step 102 is performed.
  • a preferred embodiment of step 102 includes:
  • the cache database is located locally on the client, and the cached database stores cached cache data.
  • the cache data includes a URL, a cached webpage resource, and a correspondence between the two.
  • the cache database includes URL1 and URL1.
  • the present application can determine whether a webpage resource corresponding to the webpage resource address is cached in the client locality by searching whether the webpage resource address exists in the cache data included in the cache database, and if the webpage resource exists in the cached data included in the cache database.
  • the address indicates that the webpage resource corresponding to the webpage resource address is cached locally on the client. If the webpage resource address does not exist in the cached data included in the cache database, the webpage resource corresponding to the webpage resource address is not cached locally on the client. .
  • the present application further includes the steps of: obtaining the cached data from the cache database, and storing the cached data in a Map set, before performing the lookup of whether the webpage resource address exists in the cache database including the cache data.
  • step 103 if the webpage resource corresponding to the webpage resource address is cached locally on the client, the webpage resource is locally read from the client and loaded, and the webpage resource corresponding to the webpage resource address is not cached on the client.
  • Local use the OkHttp framework to launch a network to the web server. Soliciting a data transmission pipeline flow between the network server and the client.
  • the OkHttp framework is used to initiate a network request to the network server to establish a connection between the web server and the client.
  • Data transfer pipeline flow including:
  • the webpage resource is not cached in the client, determining whether the webpage resource belongs to a cache whitelist and a cache blacklist, wherein the cache whitelist has a first cache condition that allows resource cache, Having a second cache condition in the cache blacklist that does not allow resource cache, the first cache condition being different from the second cache condition;
  • the OkHttp framework is used to initiate a network request to the network server, so that a data transmission pipeline flow is established between the web server and the client. Otherwise, it returns empty and does not cache the web resource.
  • the webpage resource corresponding to the webpage resource address is not cached locally on the client, it is determined whether the webpage resource belongs to the cache whitelist, and whether the webpage resource belongs to the cached blacklist, the cached whitelist, and the cached blacklist.
  • Each of the cached whitelists has a first cache condition
  • the cached blacklist has a second cache condition
  • the first cache condition and the second cache condition are different.
  • the webpage resource belongs to the cache whitelist and does not belong to the cache blacklist, it indicates that the webpage resource has the cache qualification. If the webpage resource belongs to the cached blacklist, it indicates that the webpage resource does not have the cache qualification, and if the webpage resource does not belong to the cache.
  • the whitelist is also not a cached blacklist, indicating that the webpage resource is not eligible for caching.
  • the first cache condition in the cache whitelist is the domain name baidu
  • the second cache condition in the cache blacklist is suffix JPG
  • the domain name of the first webpage resource is baidu suffix PNG
  • the domain name of the second webpage resource is baidu suffix is JPG
  • the second webpage resource does not have the cache qualification, returns null, does not cache the second webpage resource
  • the third webpage If the domain name of the resource is google suffixed as PNG, the third webpage resource does not have the cache qualification, and returns null, and does not cache the second webpage resource.
  • the present application utilizes the OkHttp framework to initiate a network request to the network server to establish a data transmission pipeline flow between the network server and the client, and the data transmission pipeline flow includes an input pipeline flow (PipedInputStream) and an output pipeline flow (PipedOutputStream).
  • the present application utilizes the data transmission pipeline flow to implement direct communication between the main thread and the sub-thread, and can realize display while downloading, specifically, in the process of reading the network resource data returned by the data transmission pipeline flow, the current reading
  • the obtained network resource data is synchronously loaded and displayed, and at the same time, the currently read network resource data is synchronously cached.
  • the web resource address corresponding to the currently read network resource data is used in this application.
  • Synchronous caching into the cache database In this application, data pipeline flow How much data is in the webpage, how much content is displayed in the webpage, the webpage resource is loaded, and the cached data is also written. Finally, the cached cached data path and the deposit time are written into the cache database.
  • the Hypertext Markup Language webpage loading method of the present application further includes:
  • the attribute information of the webpage resource cached locally on the client can be found in the database cache list, and the cache time of the webpage resource cached locally on the client is the difference between the deposit time and the current time. If the difference between the inbound time and the current time is greater than the preset cache period, the webpage resources cached on the client are deleted. If the cache time does not exceed the preset cache period, the reservation is continued.
  • the preset cache period can be set to one day and one week. Or one month.
  • the method further includes: determining whether the URL is a normal URL, and if yes, The subsequent loading cache process is executed. If not, it returns directly to the empty, and does not perform the load caching process.
  • an embodiment of the present invention further provides a hypertext markup language webpage loading device. As shown in FIG. 2, the device includes:
  • the obtaining module 201 is configured to obtain a webpage resource address for a webpage based on a hypertext markup language
  • the determining module 202 is configured to determine, according to the webpage resource address, whether the webpage resource corresponding to the webpage resource address is cached in the client;
  • the loading module 203 is configured to: if the webpage resource is cached in the client, read the webpage resource from the client and load display;
  • the request initiating module 204 is configured to: when the webpage resource is not cached in the client, initiate a network request to the network server by using the OkHttp framework, so as to establish a data transmission pipeline flow between the web server and the client. ;
  • the loading cache module 205 is configured to synchronously load and display the currently read network resource data in the process of reading the network resource data returned by the data transmission pipeline flow, and simultaneously, the currently read network resource data. Synchronous caching.
  • the type of the webpage is HTML5.
  • the request initiating module 204 is specifically configured to:
  • the webpage resource is not cached in the client, determining whether the webpage resource belongs to a cache whitelist and a cached blacklist, wherein the cached whitelist has a first allowable resource cache a cache condition, the cache blacklist has a second cache condition that does not allow resource cache, and the first cache condition is different from the second cache condition;
  • the OkHttp framework is used to initiate a network request to the network server, so that a data transmission pipeline flow is established between the web server and the client. Otherwise, it returns empty and does not cache the web resource.
  • the determining module 203 includes:
  • the webpage resource address exists in the cache database, it indicates that the webpage resource is cached in the client. If the webpage resource address does not exist in the cache database, the webpage resource is not Cache in the client.
  • the device further comprises:
  • a storage module configured to acquire the cached data from the cache database, and store the cached data in a Map collection.
  • the method further comprises:
  • a time acquisition module configured to acquire a cache time of a webpage resource cached in the client
  • a period judging module configured to determine whether the cache time exceeds a preset cache period
  • the loading cache module is specifically configured to:
  • the webpage resource address corresponding to the currently read network resource data is synchronously cached into the cache database.
  • an embodiment of the present invention further provides a computer readable storage medium, where a computer program is stored, and when the program is executed by the processor, the following steps are implemented:
  • the network request is initiated to the network server by using the OkHttp framework, so that a data transmission pipeline flow is established between the web server and the client;
  • the currently read network resource data is synchronously loaded and displayed, and at the same time, the currently read network resource data is synchronously cached.
  • the embodiment of the invention further provides a computer device, as shown in FIG. 3, for convenience of explanation, only Portions related to the embodiments of the present invention are shown, and the specific technical details are not disclosed. Please refer to the method part of the embodiment of the present invention.
  • the computer device may be any terminal device including a mobile phone, a tablet computer, a PDA (Personal Digital Assistant), a POS (Point of Sales), an in-vehicle computer, and the like, and the computer device is used as a mobile phone as an example:
  • FIG. 3 is a block diagram showing a portion of the structure associated with a computer device provided by an embodiment of the present invention.
  • the computer device includes a memory 301 and a processor 302.
  • the computer device architecture illustrated in FIG. 3 does not constitute a limitation to a computer device, and may include more or fewer components than those illustrated, or some components may be combined, or different component arrangements.
  • the memory 301 can be used to store software programs and modules, and the processor 302 executes various functional applications and data processing by running software programs and modules stored in the memory 301.
  • the memory 301 can mainly include a storage program area and a storage data area, wherein the storage program area can store an operating system, an application required for at least one function (such as a sound playing function, an image playing function, etc.), and the like; the storage data area can store data. (such as audio data, phone book, etc.).
  • the memory 301 may include a high speed random access memory, and may also include a nonvolatile memory such as at least one magnetic disk storage device, flash memory device, or other volatile solid state storage device.
  • the processor 302 is a control center of a computer device that performs various functions and processing data by running or executing software programs and/or modules stored in the memory 301, and recalling data stored in the memory 301.
  • the processor 302 may include one or more processing units; preferably, the processor 302 may integrate an application processor and a modem processor, where the application processor mainly processes an operating system, a user interface, an application, and the like.
  • the modem processor primarily handles wireless communications.
  • the processor 302 included in the computer device may have the following functions:
  • the network request is initiated to the network server by using the OkHttp framework, so that a data transmission pipeline flow is established between the web server and the client;
  • the currently read network resource data is synchronously loaded and displayed, and at the same time, the currently read network resource data is synchronously cached.
  • the present application is directed to an HTML webpage, in the process of loading an HTML webpage, first obtaining a webpage resource address, and then determining whether a webpage resource corresponding to the webpage resource address is cached locally on the client, if the webpage The page resource is cached locally on the client, and the webpage resource is read locally from the client and loaded and displayed. If the webpage resource is not cached locally on the client, the OkHttp framework is used to initiate a network request to the web server to enable the web server and the client.
  • the data transmission pipeline flow is established between the terminals, and in the process of the client reading the network resource data returned by the data transmission pipeline flow, the currently read network resource data is synchronously loaded and displayed, and at the same time, the currently read The network resource data is synchronously cached.
  • This application only needs one network request to implement loading and buffering of uncached network resources, which improves the efficiency of loading cache and saves traffic. At the same time, the network request can be automatically filtered by using the OkHttp framework. Duplicate network requests
  • modules in the devices of the embodiments can be adaptively changed and placed in one or more devices different from the embodiment.
  • the modules or units or components of the embodiments may be combined into one module or unit or component, and further they may be divided into a plurality of sub-modules or sub-units or sub-components.
  • any combination of the features disclosed in the specification, including the accompanying claims, the abstract and the drawings, and any methods so disclosed, or All processes or units of the device are combined.
  • Each feature disclosed in this specification (including the accompanying claims, the abstract and the drawings) may be replaced by alternative features that provide the same, equivalent or similar purpose.
  • the various component embodiments of the present invention may be implemented in hardware, or in a software module running on one or more processors, or in a combination thereof.
  • a microprocessor or digital signal processor may be used in practice to implement some or all of the functionality of some, or all, of the gateways, proxy servers, systems in accordance with embodiments of the present invention.
  • the invention can also be implemented as a device or device program (e.g., a computer program and a computer program product) for performing some or all of the methods described herein.
  • a program implementing the invention may be stored on a computer readable medium or may be in the form of one or more signals. Such signals may be downloaded from an Internet website, provided on a carrier signal, or provided in any other form.

Abstract

La présente invention se rapporte au domaine technique de développement d'application et concerne plus particulièrement un procédé et un dispositif de chargement de page web en langage de balisage hypertexte. Le procédé consiste : à acquérir une adresse de ressource de page web pour une page web sur la base du langage de balisage hypertexte (101) ; à déterminer, selon l'adresse de ressource de page web, si des ressources de page web correspondant à l'adresse de ressource de page web ont été mises en cache dans un client (102) ; si les ressources de page web ont été mises en cache dans le client, lire les ressources de page web à partir du client, et charger et à afficher celles-ci ; si les ressources de page web n'ont pas été mises en cache dans le client, à l'aide d'une trame OkHttp envoyer une demande de réseau à un serveur de réseau de telle sorte qu'un flux de canal de transmission de données soit établi entre le serveur de réseau et le client (103) ; dans le processus de lecture de données de ressources de réseau renvoyées par le flux de canaux de transmission de données, charger et afficher de manière synchrone des données de ressources de réseau en cours de lecture, et mettre en cache de manière synchrone les données de ressources de réseau en cours de lecture (104). Le procédé présente les avantages que des sources de réseau non mises en cache peuvent être chargées et mises en cache juste au moyen d'une seule demande de réseau, le chargement et l'efficacité de mise en cache sont améliorés, et le trafic est sauvegardé.
PCT/CN2017/107041 2017-06-27 2017-10-20 Procédé et dispositif de chargement de page web en langage de balisage hypertexte WO2019000722A1 (fr)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN201710499814.8 2017-06-27
CN201710499814.8A CN107291913B (zh) 2017-06-27 2017-06-27 超文本标记语言网页加载方法及装置

Publications (1)

Publication Number Publication Date
WO2019000722A1 true WO2019000722A1 (fr) 2019-01-03

Family

ID=60098192

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2017/107041 WO2019000722A1 (fr) 2017-06-27 2017-10-20 Procédé et dispositif de chargement de page web en langage de balisage hypertexte

Country Status (2)

Country Link
CN (1) CN107291913B (fr)
WO (1) WO2019000722A1 (fr)

Families Citing this family (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN109992428B (zh) * 2017-12-29 2022-06-07 北京京东尚科信息技术有限公司 数据处理方法及系统
CN109800370A (zh) * 2018-12-14 2019-05-24 平安普惠企业管理有限公司 网页页面的显示方法、装置、计算机设备及存储介质
CN111035927A (zh) * 2019-12-12 2020-04-21 珠海海鸟科技有限公司 一种资源管理方法、装置及可读存储介质
CN112214701A (zh) * 2020-10-14 2021-01-12 青岛海尔科技有限公司 页面的展示方法及系统、存储介质、电子装置
CN113626740A (zh) * 2021-06-30 2021-11-09 济南浪潮数据技术有限公司 一种客户端数据刷新方法、装置及设备
CN114827271B (zh) * 2022-04-26 2024-05-03 土巴兔集团股份有限公司 一种多级缓存在线控制方法及相关装置

Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103455478A (zh) * 2012-05-21 2013-12-18 腾讯科技(深圳)有限公司 加速网页访问的方法和装置
CN105022750A (zh) * 2014-04-28 2015-11-04 腾讯科技(北京)有限公司 资源文件加载方法和装置
CN106022870A (zh) * 2016-05-16 2016-10-12 南京邮电大学 Android平台下基于地理位置信息的购物系统
CN106055720A (zh) * 2016-07-18 2016-10-26 北京小米移动软件有限公司 网页显示方法及装置
CN106547833A (zh) * 2016-10-11 2017-03-29 乐视控股(北京)有限公司 网页浏览方法及装置
CN106790687A (zh) * 2017-02-17 2017-05-31 和创(北京)科技股份有限公司 网页呈现方法、网页数据处理方法和服务器

Family Cites Families (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN105760405A (zh) * 2014-12-19 2016-07-13 阿里巴巴集团控股有限公司 用于加载web页面的网络资源获取方法、缓存方法及装置
CN104536849B (zh) * 2015-01-20 2017-10-20 成都携恩科技有限公司 一种基于云计算的数据备份方法
US20160344831A1 (en) * 2015-05-21 2016-11-24 Google Inc. Proxy service for content requests
US10505709B2 (en) * 2015-06-01 2019-12-10 Nxp B.V. White-box cryptography interleaved lookup tables
CN106354879A (zh) * 2016-09-27 2017-01-25 北京奇虎科技有限公司 网页缓存方法及装置

Patent Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103455478A (zh) * 2012-05-21 2013-12-18 腾讯科技(深圳)有限公司 加速网页访问的方法和装置
CN105022750A (zh) * 2014-04-28 2015-11-04 腾讯科技(北京)有限公司 资源文件加载方法和装置
CN106022870A (zh) * 2016-05-16 2016-10-12 南京邮电大学 Android平台下基于地理位置信息的购物系统
CN106055720A (zh) * 2016-07-18 2016-10-26 北京小米移动软件有限公司 网页显示方法及装置
CN106547833A (zh) * 2016-10-11 2017-03-29 乐视控股(北京)有限公司 网页浏览方法及装置
CN106790687A (zh) * 2017-02-17 2017-05-31 和创(北京)科技股份有限公司 网页呈现方法、网页数据处理方法和服务器

Also Published As

Publication number Publication date
CN107291913B (zh) 2019-03-15
CN107291913A (zh) 2017-10-24

Similar Documents

Publication Publication Date Title
WO2019000722A1 (fr) Procédé et dispositif de chargement de page web en langage de balisage hypertexte
US9565265B2 (en) Method and apparatus for automatically optimizing the loading of images in a cloud-based proxy service
CN103218434B (zh) 一种加载静态资源的方法和装置
US9148332B2 (en) Content delivery network
CN110096660B (zh) 用于加载页面图片的方法、装置和电子设备
CN103338249B (zh) 缓存方法及装置
US20100146415A1 (en) Dns prefetch
CN107197359B (zh) 视频文件缓存方法及装置
US11330075B2 (en) One-time cache
US10455047B2 (en) Methods and systems for application controlled pre-fetch
US8516041B1 (en) Pre-fetching asynchronously requested content
US20130111325A1 (en) Method and Apparatus of Processing Nested Fragment Caching of a Web Page
US10296485B2 (en) Remote direct memory access (RDMA) optimized high availability for in-memory data storage
US20130346542A1 (en) Common web accessible data store for client side page processing
WO2016173441A1 (fr) Procédé, appareil et système de traitement de cache de serveur
CN112559927A (zh) 一种网页加载方法及装置
US20140006918A1 (en) Method and system for web page rearrangement
WO2015154682A1 (fr) Procédé de traitement de requête de réseau, serveur de réseau et système de réseau
CN109325194B (zh) 页面访问方法、装置、设备以及存储介质
US9160804B2 (en) Web storage optimization
CN109284428A (zh) 数据处理方法、装置及存储介质
CN112751917A (zh) 资源文件加载方法、网络设备、电子设备及存储介质
CN115658171A (zh) 一种轻量级解决java分布式应用配置动态刷新的方法及系统
WO2015154678A1 (fr) Procédé et dispositif de traitement de fichiers, et système de réseau
US20220075928A1 (en) Rendering method for on-demand loading of pdf file on network

Legal Events

Date Code Title Description
NENP Non-entry into the national phase

Ref country code: DE

122 Ep: pct application non-entry in european phase

Ref document number: 17916248

Country of ref document: EP

Kind code of ref document: A1