USRE42169E1 - Method, apparatus, and computer program product for efficient server response generation using intermediate state caching - Google Patents
Method, apparatus, and computer program product for efficient server response generation using intermediate state caching Download PDFInfo
- Publication number
- USRE42169E1 USRE42169E1 US11/318,395 US31839505A USRE42169E US RE42169 E1 USRE42169 E1 US RE42169E1 US 31839505 A US31839505 A US 31839505A US RE42169 E USRE42169 E US RE42169E
- Authority
- US
- United States
- Prior art keywords
- request
- resource
- response
- generating
- server
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Expired - Lifetime
Links
Images
Classifications
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04L—TRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
- H04L67/00—Network arrangements or protocols for supporting network services or applications
- H04L67/01—Protocols
- H04L67/02—Protocols based on web technology, e.g. hypertext transfer protocol [HTTP]
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04L—TRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
- H04L61/00—Network arrangements, protocols or services for addressing or naming
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04L—TRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
- H04L61/00—Network arrangements, protocols or services for addressing or naming
- H04L61/30—Managing network names, e.g. use of aliases or nicknames
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04L—TRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
- H04L67/00—Network arrangements or protocols for supporting network services or applications
- H04L67/14—Session management
- H04L67/142—Managing session states for stateless protocols; Signalling session states; State transitions; Keeping-state mechanisms
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04L—TRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
- H04L2101/00—Indexing scheme associated with group H04L61/00
- H04L2101/30—Types of network names
- H04L2101/365—Application layer names, e.g. buddy names, unstructured names chosen by a user or home appliance name
Definitions
- a server receiving numerous requests for resources within a brief period of time must be highly efficient in generating responses if the server is going to fulfill the requests within an acceptable period of time.
- ETV Enhanced Television
- a video production is distributed to numerous client applications.
- the video production has associated with it one or more enhancing resources that may be selected by a viewer of the video production.
- the enhancing resources are made available to the viewer by including an identifier of the resource in the video production.
- the viewer's client platform e.g., a set-top box or computer, extracts the resource identifier and provides an indication to the viewer that enhancing resources are available.
- a request is sent with the client application resident in the viewer's client platform.
- client applications each send requests contemporaneously. This aspect is typically present when, for instance, the video production is broadcast and each viewer becomes aware of the availability of the enhancing resource from the broadcast video production virtually simultaneously. It would thus be desirable for operators of servers receiving numerous simultaneous requests for server efficiency to be improved.
- a conventional HTTP server receives a request for a uniform resource identifier (‘URI’) it first parses the request, then parses header lines in the request. Next, the HTTP server applies a rewrite mapping process that transforms an external name for the resource (in the URI) to an internal name used for locating the resource and generating the response.
- Conventional modules for performing the rewrite mapping are powerful and flexible, but obtain this power and flexibility only through computational expense. After the HTTP server derives an internal name of the resource it must generate the response (by retrieving the associated file and/or running executable code) as well as generating headers for the response. If a request for the same resource, were to arrive at the server an instant later, a conventional server would repeat the foregoing steps. In a context where there are numerous simultaneous requests for the same set of resources, conventional server processing is needlessly redundant and inefficient.
- a caching proxy server is a conventional server which stores locally (or at least more locally) to a client certain resources that are requested from hosts on a data network, typically the internet. In this way a caching proxy server reduces response time by reducing or eliminating time lags introduced by having to retrieve the resource from a remote host, that may only be available through a slow or congested network connection. However, the caching proxy server does not reduce that component of total response time that is attributable to processing at the sever; a conventional caching proxy must flow through all of the intermediate states as any other server in generating a response.
- a caching proxy server retains the inefficiencies of a conventional HTTP server in redundantly performing the mapping from an external name to an internal name for repeatedly-requested resources. Indeed, where delays in response time are introduced not from network lags, but from the sheer request volume at the server, a caching proxy server may provide no noticeable benefits to the user whatsoever.
- An exemplary method includes: receiving a first request for a first resource; deriving intermediate state information used in generating a first response to the first request and caching the intermediate state information. Then when a second request is received, retrieving the intermediate state information; and generating a second response to the second request using the intermediate state information.
- the intermediate state information may comprise include: an internal name corresponding to the first resource and a type of the first resource; the first resource; or a plurality of response header lines for the first resource.
- An exemplary apparatus includes: a request receiver configured for receiving a first request for a first resource; a request handler configured for deriving intermediate state information used in generating a first response to the first request; a cache storing the intermediate state information; and a request handler configured for retrieving the intermediate state information and further configured for generating a second response to the second request using the intermediate state information.
- This apparatus may operate, for instance, with similar types of intermediate state information as the forgoing methods.
- a still further illustrative method includes: receiving a first request for a first resource, the first request comprising a resource identifier and request modifying information; determining whether generating a response for the first request requires parsing the request modifying information; and, if not, generating the response without parsing the request modifying information.
- An illustrative apparatus includes: a request receiver configured for receiving a first request for a first resource, the first request comprising a resource identifier and request modifying information; a response generator configured for generating a response to the first request and further configured for determining whether generating the response requires parsing the request modifying information; and a request modifying information parser configured to parse request modifying information only when the response generator determines generating the response requires parsing the request modifying information.
- Yet another aspect of the present invention are computer programs products comprising a computer-readable medium having computer readable instructions encoded thereon for efficient server response generation using intermediate state caching.
- the computer-readable instructions are able to configure computing machinery to carrying on methods in accordance with the invention, or to configure an apparatus in accordance with the invention. So configured, computing machinery provides structural elements for performing functions in accordance with the invention.
- an HTTP server is modified to carry out the invention; when an HTTP Request Message (comprising a URI) arrives, the server determines if a URI descriptor has already been cached. If not, one is generated. If the request is for a small, plain file, the file and response headers are cached and read out to generate the response. If the response is for an executable, the headers in the Request Message are parsed and the executable generates the response. When a second request arrives for the resource, the server can consult and locate the cached URI descriptor and read out the cached response headers and body.
- illustrative embodiments of the invention obtain efficiencies such as, but not limited to: eliminating parsing of headers in requests until necessary and then only parsing the required headers; caching the costly mapping between an external and internal name for a resource and eliminating redundant processing in repeated requests; caching response headers and body and eliminating redundant processing in repeated requests.
- FIG. 1 depicts a cache data architecture in accordance with an illustrative embodiment
- FIG. 2 is a flow diagram of a method for efficient server response generation using intermediate state caching in accordance with an illustrative embodiment
- FIG. 3 depicts a computer system capable of being configured to embody aspects of the invention in accordance with an illustrative embodiment.
- FIG. 1 depicts a cache data architecture 1000 in accordance with an illustrative embodiment of the invention.
- the cache data architecture 1000 may be used to store information from intermediate states in generating a response to a request for a resource. When another similar request is received, the response may be more efficiently generated by retrieving the intermediate state information from the cache data architecture 1000 rather than regenerating the intermediate state information. Generation and use of the cache data architecture 1000 will be discussed in greater detail in connection with FIG. 2 below.
- the illustrative cache data architecture 1000 includes a hash table 1100 comprising a number of ‘buckets’ (denoted “B” in FIG. 1 for some positive integer, B, chosen conventionally). Associated with each bucket are a set of URI Descriptor data structures entered in the hash table 1100 for storage and retrieval. Illustratively, shown are a first URI Descriptor data structure 1200 , a second URI Descriptor data structure 1300 , and an N th URI Descriptor data structure 1400 . The composition of the URI Descriptor data structures is illustrated in callout 1450 from the N th URI Descriptor data structure 1400 .
- the N th URI Descriptor data structure 1400 comprises a first variable 1455 indicating whether the resource is cached, a second variable 1460 enumerating the type of file associated with the resource, a third variable 1465 comprising an internal name for the resource associated with the URI, a fourth variable 1470 comprising a length of the resource associated with the URI, a fifth variable 1475 comprising a length of headers for the response, a sixth variable 1480 referencing a cached response body 1500 , and a seventh variable 1485 referencing a cached response header 1600 .
- the cached response body 1500 and the cached response header 1600 are preferably stored in random access memory. Conventional systems may swap memory to mass storage, and such systems may also be used. More generally, any storage system proving suitably rapid access should be operable with features of the invention.
- FIG. 2 depicts a flow diagram, of an ‘efficient response generation’ method 2000 in accordance with an illustrative embodiment.
- a server process for instance a suitably modified version of the Apache HTTP server (available from ⁇ http://www.apache.org> and in many commercial products).
- the particular server application is not fundamental, and others may be used without limitation, on variants of POSIX-like operating systems, WINDOWS operating systems from Microsoft Corp. of Redmond, Wash., or other operating systems.
- a Request Message comprises: a Request Line and zero or more Message Headers.
- a compliant Request Line comprises the URI and, in practice, typically several Message Headers are included in a Request Message that provide request modifying information, for instance as set forth in the HTTP protocol.
- a ‘request URI extraction’ process 2030 extracts the URI from the Request Line and process flow continues to a ‘URI hashes to descriptor’ decision process 2040 .
- the ‘URI hashes to descriptor’ decision process 2040 hashes the URI received from the ‘request’ data block 2020 for a lookup operation in the hash table 1100 .
- a hash table is not fundamental; other data models could be used; preferably, the data model provides O(1) speed for lookup independent of the size of data set.
- the ‘URI hashes to descriptor’ decision process 2040 exits through its ‘no’ branch and process flow continues to a ‘URI rewrite mapping’ process 2050 .
- the ‘URI rewrite mapping’ process 2050 performs a translation from the URI to an internal name for the resource associated with the URI.
- the internal name is a location in the filesystem of the hardware running the server process.
- the URI may also map to, for instance, debugging information, a directory listing, or one of several default internal names of the server process.
- the mod_rewrite uniform resource identifier rewriting engine may be used, and analogously functioning modules may be used with other servers, if desired.
- the flexible mapping from the URI to an internal name involves relatively computationally expensive parsing and extraction. Appreciable efficiencies may be obtained by caching the results of this mapping so that it need not be repeated for succeeding requests for the same resource.
- process flow then continues to a ‘URI descriptor creation’ process 2060 .
- the ‘URI descriptor creation’ process 2060 uses the URI and the internal name to create a URI Descriptor data structure that will, in part, cache the mapping performed by the ‘URI rewrite mapping’ process 2050 .
- the ‘URI descriptor creation’ process 2060 creates a copy of the URI Descriptor data structure in the hash table 1100 , sets the first variable 1455 indicating the resource is cached, sets the second variable 1460 indicating the type of file, and the third variable 1465 indicating the internal name for the resource.
- Process flow continues to a ‘plainfile’ decision process 2070 and a ‘small’ decision process 2075 that determine whether the resource is a candidate for caching.
- two criteria must be met for the resource to be cached.
- the resource must be a plain file, and second the file must be ‘small.’
- response headers can be cached even when the resource is not, for instance, if the resource is not ‘small’.
- a resource is a plain file if it does not require running executable code to generate a response, although other criteria could also be used. If the ‘plainfile’ decision process 2070 determines the resource is a plainfile, it exits through its ‘yes’ branch and process flow continues to the ‘small’ decision process 2075 . Whether a file is ‘small’ for the purposes of this illustrative embodiment is a function of the caching policy, the server architecture, and the memory architecture of the hardware running the server process. First, the caching policy determines the number of files to cache. Some preferred embodiments use a FIFO cache with a fixed size of 20 files, although many other caching policies are within the level of ordinary skill in the art and could be used as well.
- the server architecture determines the number caches that need to be stored.
- a typical server running in a POSIX-like environment e.g., Apache v.1.3.6 running under SOLARIS v. 2.7, will have several concurrently-executing request handling processes each with an independent address space. If each request handling process stores its own cache in its own address space, then there are as many caches as there are request handling process.
- Another typical situation is where a server runs in a multithreaded environment. In this instance, several concurrently executing request handling processes can share a common address space.
- a single cache can be stored in the common address space and accessed by all request handling processes (suitably synchronized).
- the amount of physical memory available for cache(s) on the machine executing the server process provides an upper bound.
- ‘small’ decision process 2075 determines the resource is ‘small’, it exits through its ‘yes’ branch and process flow continues to an ‘open file’ process 2080 that opens the file associated with the resource.
- a ‘read file into d.body’ process 2090 reads the file associated with the resource into the buffer referenced by the sixth variable 1480 , e.g, it creates the cached response body 1500 , and assigns a value to the fourth variable 1470 of the length of the file associated with the resource.
- Process flow continues to a ‘d.headers building’ process 2100 that constructs the response headers.
- the response is a Response Message in accordance with the HTTP protocol and the response headers generally provide information about the server and about further access to the resource identified by the request.
- the ‘d.headers building’ process 2100 also reads the constructed response headers into the buffer referenced by the seventh variable 1485 , e.g, the cached response header 1600 , and assigns a value to the fifth variable 1475 of the length of the response headers. This substantially completes generation of the response and storage of intermediate state information in the URI Descriptor data structure.
- a ‘d.headers writing’ process 2110 begins communicating the response by writing the response headers from the cached response header 1600 referenced by the seventh variable 1485 .
- not all headers for the response can be cached and must be created dynamically at the time of transmitting the response, for instance the current date and time.
- a ‘dynamic headers writing’ process 2120 continues communicating the response to the client by writing any response headers that need to be created at the time of generating the response.
- a ‘body cached’ decision process 2125 determines whether the body of the resource is cached. In some variations, response headers are cached while the body of the resource is not. This may occur, for instance, when the resource is not a small file. In other instances, it may be desirable only to cache response headers.
- the ‘body cached’ decision process 2125 determines whether the body is cached. If so, the ‘body cached’ decision process 2125 exits through its ‘yes’ branch and a ‘d.body writing’ process 2130 completes communicating the response by writing the response body from the cached response body 1500 referenced by the sixth variable 1480 in the URI Descriptor data structure. Process flow completes through an ‘end’ terminal 2140 .
- the ‘body cached’ decision process 2125 determines the body is not cached, it exits through its ‘no’ branch and process flow continues an ‘open file’ process 2127 that opens the file associated with the resource for reading, a ‘read file’ process 2180 that reads the resource, and a ‘write file’ process 2190 that completes the response by writing the resource. Process flow then completes through the ‘end’ terminal 2140 .
- the ‘small’ decision process 2075 when the resource is not ‘small’, the ‘small’ decision process 2075 exits through its ‘no’ branch and the response is generated.
- Response generation begins with an ‘open file’ process 2160 that opens the file associated with the resource for reading.
- a ‘headers writing’ process 2170 generates and writes the response headers and the ‘read file’ process 2180 reads the resource.
- the ‘write file’ process 2190 completes the response by writing the resource. Process flow then completes through the ‘end’ terminal 2140 .
- the ‘headers writing’ process 2170 may also perform the function of caching the response headers. This may occur as was described above with reference to the ‘d.headers building’ process 2100 .
- the ‘plainfile’ decision process 2070 if it determines the resource is not a plain file, the ‘plainfile’ decision process 2070 exits through its ‘no’ branch and process flow continues to a ‘run executable’ process 2200 .
- the ‘run executable’ process 2200 executes the instructions, e.g. servlet, script, database query, etc., responsible for generating the response.
- the ‘run executable’ process 2200 interacts with a ‘header parsing’ process 2210 that parses those headers from the request received in the ‘request’ data block 2020 that are necessary for generating the response.
- the request headers are only parsed when the ‘run executable’ process 2200 is entered, and then only those headers are parsed that are required by the particular instructions responsible for generating the response. Eliminating unnecessary parsing of headers from the request appreciably reduces the average computational overhead necessary for response generation.
- the ‘run executable’ process 2200 completes generation of the response, it outputs the response for transmission to the client and process flow completes through the ‘end’ terminal 2140 .
- the ‘URI hashes to descriptor’ decision process 2040 exits through its ‘yes’ branch. This occurs when a second (or later) request for a given resource occurs (and the URI Descriptor data structure associated with the resource has not already been displaced from the cache).
- Process flow continues to an ‘d.cached’ decision process 2220 .
- the ‘d.cached’ decision process 2220 consults the first variable 1455 in the URI Descriptor data structure to determine whether the resource associated with the request URI is cached.
- the ‘d.cached’ decision process 2220 exits through its ‘yes’ branch to the ‘d.headers writing’ process 2110 and the ‘dynamic headers writing’ process 2120 that write the cached headers, as well as any dynamically-created headers for the response.
- the ‘body cached’ decision process 2125 determines whether the body of the response is cached and process flow continues to the ‘open file’ process 2127 or the ‘d.body writing’ process 2130 , to generate the body of the response, as previously described. Process flow then completes through the ‘end’ terminal 2140 .
- the ‘d.cached’ decision process 2220 determines that the resource associated with the request URI is not cached, it exits through its ‘no’ branch and process flow continues to a ‘plain file’ decision process 2150 . If the ‘plain file’ decision process 2150 determines the resource is not a plain file, it exits through its ‘no’ branch and process flow continues to the ‘run executable’ process 2200 and continues as was previously described. If the ‘plain file’ decision process 2150 determines the response is a plain file, it exits through its ‘yes’ branch and process flow continues to the ‘open file’ process 2160 and the response is generated as was previously described.
- FIG. 3 depicts a computer system 3000 capable of embodying aspects of the invention.
- the computer system 3000 comprises a microprocessor 3010 , a memory 3020 and an input/output system 3030 .
- the memory 3020 is capable of being configured to provide a data structure 3040 , such as the cache data architecture 1000 , which may contain data manipulated by the computer system 3000 when embodying aspects of the invention.
- a media drive 3070 such as a disk drive, CD-ROM drive, or the like.
- the media drive 3070 may operate with a computer-usable storage medium 3075 capable of storing computer-readable program code able to configure the computer system 3000 to embody aspects of the invention.
- the input/output system 3030 may also operate with a keyboard 3050 , a display 3060 , a data network 3080 such as the internet or the like (through an appropriate network interface), a mass data storage 3085 , and a pointing device 3090 .
- the computer system 3000 is general-purpose computing machinery. As one of skill recognizes, programmed instructions may configure general purpose computing machinery to embody structures capable of performing functions in accordance with aspects of the invention. Special purpose computing machinery comprising, for example, an application specific integrated circuit (ASIC) may also be used.
- ASIC application specific integrated circuit
- the computer system 3000 is an UltraSPARC workstation from Sun Microsystems of Mountain View, Calif., that runs the SOLARIS operating system (also from Sun) and the Apache HTTP (web) server application.
Landscapes
- Engineering & Computer Science (AREA)
- Computer Networks & Wireless Communication (AREA)
- Signal Processing (AREA)
- Information Retrieval, Db Structures And Fs Structures Therefor (AREA)
- Information Transfer Between Computers (AREA)
- Computer And Data Communications (AREA)
Abstract
Description
Claims (88)
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US11/318,395 USRE42169E1 (en) | 1999-05-25 | 2005-12-22 | Method, apparatus, and computer program product for efficient server response generation using intermediate state caching |
Applications Claiming Priority (3)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US09/318,493 US6513062B1 (en) | 1999-05-25 | 1999-05-25 | Method, apparatus, and computer program product for efficient server response generation using intermediate state caching |
US10/251,176 US6671719B2 (en) | 1999-05-25 | 2002-09-20 | Method, apparatus, and computer program product for efficient server response generation using intermediate state caching |
US11/318,395 USRE42169E1 (en) | 1999-05-25 | 2005-12-22 | Method, apparatus, and computer program product for efficient server response generation using intermediate state caching |
Related Parent Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
US10/251,176 Reissue US6671719B2 (en) | 1999-05-25 | 2002-09-20 | Method, apparatus, and computer program product for efficient server response generation using intermediate state caching |
Publications (1)
Publication Number | Publication Date |
---|---|
USRE42169E1 true USRE42169E1 (en) | 2011-02-22 |
Family
ID=23238404
Family Applications (3)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
US09/318,493 Expired - Lifetime US6513062B1 (en) | 1999-05-25 | 1999-05-25 | Method, apparatus, and computer program product for efficient server response generation using intermediate state caching |
US10/251,176 Ceased US6671719B2 (en) | 1999-05-25 | 2002-09-20 | Method, apparatus, and computer program product for efficient server response generation using intermediate state caching |
US11/318,395 Expired - Lifetime USRE42169E1 (en) | 1999-05-25 | 2005-12-22 | Method, apparatus, and computer program product for efficient server response generation using intermediate state caching |
Family Applications Before (2)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
US09/318,493 Expired - Lifetime US6513062B1 (en) | 1999-05-25 | 1999-05-25 | Method, apparatus, and computer program product for efficient server response generation using intermediate state caching |
US10/251,176 Ceased US6671719B2 (en) | 1999-05-25 | 2002-09-20 | Method, apparatus, and computer program product for efficient server response generation using intermediate state caching |
Country Status (4)
Country | Link |
---|---|
US (3) | US6513062B1 (en) |
EP (1) | EP1252565A2 (en) |
AU (1) | AU5267000A (en) |
WO (1) | WO2000072141A2 (en) |
Families Citing this family (13)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US6513062B1 (en) | 1999-05-25 | 2003-01-28 | Grischa Corporation | Method, apparatus, and computer program product for efficient server response generation using intermediate state caching |
US7571217B1 (en) | 2000-08-16 | 2009-08-04 | Parallel Networks, Llc | Method and system for uniform resource locator transformation |
US6801933B1 (en) * | 2000-08-23 | 2004-10-05 | Nokia Internet Communications, Inc. | System and method for proactive caching employing graphical usage description |
JP3961796B2 (en) * | 2001-08-27 | 2007-08-22 | ソニー株式会社 | Information providing system, information processing apparatus and method, information providing apparatus and method, recording medium, and program |
US20040032486A1 (en) | 2002-08-16 | 2004-02-19 | Shusman Chad W. | Method and apparatus for interactive programming using captioning |
US20040210947A1 (en) | 2003-04-15 | 2004-10-21 | Shusman Chad W. | Method and apparatus for interactive video on demand |
US20030196206A1 (en) | 2002-04-15 | 2003-10-16 | Shusman Chad W. | Method and apparatus for internet-based interactive programming |
US7051102B2 (en) * | 2002-04-29 | 2006-05-23 | Microsoft Corporation | Peer-to-peer name resolution protocol (PNRP) security infrastructure and method |
US8001175B2 (en) * | 2004-10-22 | 2011-08-16 | International Business Machines Corporation | Facilitating server response optimization |
US7711799B2 (en) * | 2004-11-22 | 2010-05-04 | Alcatel-Lucent Usa Inc. | Method and apparatus for pre-packetized caching for network servers |
US7817647B2 (en) * | 2005-04-22 | 2010-10-19 | Microsoft Corporation | Flower-petal resolutions for PNRP |
US20070118693A1 (en) * | 2005-11-19 | 2007-05-24 | International Business Machines Cor | Method, apparatus and computer program product for cache restoration in a storage system |
US20120221708A1 (en) * | 2011-02-25 | 2012-08-30 | Cisco Technology, Inc. | Distributed content popularity tracking for use in memory eviction |
Citations (42)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US5452447A (en) | 1992-12-21 | 1995-09-19 | Sun Microsystems, Inc. | Method and apparatus for a caching file server |
US5511208A (en) | 1993-03-23 | 1996-04-23 | International Business Machines Corporation | Locating resources in computer networks having cache server nodes |
US5682514A (en) | 1995-11-30 | 1997-10-28 | Stampede Technologies, Inc. | Apparatus and method for increased data access in a network file oriented caching system |
US5737523A (en) | 1996-03-04 | 1998-04-07 | Sun Microsystems, Inc. | Methods and apparatus for providing dynamic network file system client authentication |
US5740370A (en) | 1996-03-27 | 1998-04-14 | Clinton Battersby | System for opening cache file associated with designated file of file server only if the file is not subject to being modified by different program |
US5787470A (en) | 1996-10-18 | 1998-07-28 | At&T Corp | Inter-cache protocol for improved WEB performance |
US5793966A (en) * | 1995-12-01 | 1998-08-11 | Vermeer Technologies, Inc. | Computer system and computer-implemented process for creation and maintenance of online services |
US5826253A (en) | 1995-07-26 | 1998-10-20 | Borland International, Inc. | Database system with methodology for notifying clients of any additions, deletions, or modifications occurring at the database server which affect validity of a range of data records cached in local memory buffers of clients |
US5852717A (en) | 1996-11-20 | 1998-12-22 | Shiva Corporation | Performance optimizations for computer networks utilizing HTTP |
WO1999003047A1 (en) | 1997-07-11 | 1999-01-21 | Earle Machardy | Content hosting environment system and cache mechanism |
US5864852A (en) | 1996-04-26 | 1999-01-26 | Netscape Communications Corporation | Proxy server caching mechanism that provides a file directory structure and a mapping mechanism within the file directory structure |
WO1999005619A1 (en) | 1997-07-28 | 1999-02-04 | Icon Cmt Corp. | Dynamically generated document cache system |
US5892914A (en) | 1994-11-28 | 1999-04-06 | Pitts; William Michael | System for accessing distributed data cache at each network node to pass requests and data |
WO1999017227A1 (en) | 1997-09-29 | 1999-04-08 | International Business Machines Corporation | Method and system for prefetching information |
US5933849A (en) | 1997-04-10 | 1999-08-03 | At&T Corp | Scalable distributed caching system and method |
US6003082A (en) | 1998-04-22 | 1999-12-14 | International Business Machines Corporation | Selective internet request caching and execution system |
US6023726A (en) | 1998-01-20 | 2000-02-08 | Netscape Communications Corporation | User configurable prefetch control system for enabling client to prefetch documents from a network server |
US6078929A (en) | 1996-06-07 | 2000-06-20 | At&T | Internet file system |
US6085234A (en) | 1994-11-28 | 2000-07-04 | Inca Technology, Inc. | Remote file services network-infrastructure cache |
US6128655A (en) | 1998-07-10 | 2000-10-03 | International Business Machines Corporation | Distribution mechanism for filtering, formatting and reuse of web based content |
US6128701A (en) | 1997-10-28 | 2000-10-03 | Cache Flow, Inc. | Adaptive and predictive cache refresh policy |
WO2000072141A2 (en) | 1999-05-25 | 2000-11-30 | Respondtv, Inc. | Method, apparatus, and computer program product for efficient server response generation using intermediate state caching |
US6182127B1 (en) | 1997-02-12 | 2001-01-30 | Digital Paper, Llc | Network image view server using efficent client-server tilting and caching architecture |
US6185608B1 (en) | 1998-06-12 | 2001-02-06 | International Business Machines Corporation | Caching dynamic web pages |
US6185598B1 (en) | 1998-02-10 | 2001-02-06 | Digital Island, Inc. | Optimized network resource location |
US6209048B1 (en) * | 1996-02-09 | 2001-03-27 | Ricoh Company, Ltd. | Peripheral with integrated HTTP server for remote access using URL's |
US6212565B1 (en) | 1998-08-26 | 2001-04-03 | Sun Microsystems, Inc. | Apparatus and method for improving performance of proxy server arrays that use persistent connections |
US6240461B1 (en) | 1997-09-25 | 2001-05-29 | Cisco Technology, Inc. | Methods and apparatus for caching network data traffic |
US6243719B1 (en) | 1997-10-20 | 2001-06-05 | Fujitsu Limited | Data caching apparatus, data caching method and medium recorded with data caching program in client/server distributed system |
US6243760B1 (en) | 1997-06-24 | 2001-06-05 | Vistar Telecommunications Inc. | Information dissemination system with central and distributed caches |
US6286043B1 (en) * | 1998-08-26 | 2001-09-04 | International Business Machines Corp. | User profile management in the presence of dynamic pages using content templates |
US6298356B1 (en) | 1998-01-16 | 2001-10-02 | Aspect Communications Corp. | Methods and apparatus for enabling dynamic resource collaboration |
US6324685B1 (en) | 1998-03-18 | 2001-11-27 | Becomm Corporation | Applet server that provides applets in various forms |
US6330561B1 (en) | 1998-06-26 | 2001-12-11 | At&T Corp. | Method and apparatus for improving end to end performance of a data network |
US6330606B1 (en) | 1996-06-03 | 2001-12-11 | Webtv Networks, Inc. | Method and apparatus for dispatching document requests in a proxy |
US6393422B1 (en) | 1998-11-13 | 2002-05-21 | International Business Machines Corporation | Navigation method for dynamically generated HTML pages |
US6397246B1 (en) | 1998-11-13 | 2002-05-28 | International Business Machines Corporation | Method and system for processing document requests in a network system |
US6442601B1 (en) | 1999-03-25 | 2002-08-27 | International Business Machines Corporation | System, method and program for migrating files retrieved from over a network to secondary storage |
US6490625B1 (en) | 1997-11-26 | 2002-12-03 | International Business Machines Corporation | Powerful and flexible server architecture |
US6505241B2 (en) | 1992-06-03 | 2003-01-07 | Network Caching Technology, L.L.C. | Network intermediate node cache serving as proxy to client node to request missing data from server |
US6507867B1 (en) * | 1998-12-22 | 2003-01-14 | International Business Machines Corporation | Constructing, downloading, and accessing page bundles on a portable client having intermittent network connectivity |
US6519646B1 (en) * | 1998-09-01 | 2003-02-11 | Sun Microsystems, Inc. | Method and apparatus for encoding content characteristics |
Family Cites Families (1)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN1192149C (en) | 1998-08-12 | 2005-03-09 | 日立建机株式会社 | Electronic control system and control device for construction machine |
-
1999
- 1999-05-25 US US09/318,493 patent/US6513062B1/en not_active Expired - Lifetime
-
2000
- 2000-05-24 WO PCT/US2000/009820 patent/WO2000072141A2/en active Application Filing
- 2000-05-24 AU AU52670/00A patent/AU5267000A/en not_active Abandoned
- 2000-05-24 EP EP00937517A patent/EP1252565A2/en not_active Ceased
-
2002
- 2002-09-20 US US10/251,176 patent/US6671719B2/en not_active Ceased
-
2005
- 2005-12-22 US US11/318,395 patent/USRE42169E1/en not_active Expired - Lifetime
Patent Citations (42)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US6505241B2 (en) | 1992-06-03 | 2003-01-07 | Network Caching Technology, L.L.C. | Network intermediate node cache serving as proxy to client node to request missing data from server |
US5452447A (en) | 1992-12-21 | 1995-09-19 | Sun Microsystems, Inc. | Method and apparatus for a caching file server |
US5511208A (en) | 1993-03-23 | 1996-04-23 | International Business Machines Corporation | Locating resources in computer networks having cache server nodes |
US6085234A (en) | 1994-11-28 | 2000-07-04 | Inca Technology, Inc. | Remote file services network-infrastructure cache |
US5892914A (en) | 1994-11-28 | 1999-04-06 | Pitts; William Michael | System for accessing distributed data cache at each network node to pass requests and data |
US5826253A (en) | 1995-07-26 | 1998-10-20 | Borland International, Inc. | Database system with methodology for notifying clients of any additions, deletions, or modifications occurring at the database server which affect validity of a range of data records cached in local memory buffers of clients |
US5682514A (en) | 1995-11-30 | 1997-10-28 | Stampede Technologies, Inc. | Apparatus and method for increased data access in a network file oriented caching system |
US5793966A (en) * | 1995-12-01 | 1998-08-11 | Vermeer Technologies, Inc. | Computer system and computer-implemented process for creation and maintenance of online services |
US6209048B1 (en) * | 1996-02-09 | 2001-03-27 | Ricoh Company, Ltd. | Peripheral with integrated HTTP server for remote access using URL's |
US5737523A (en) | 1996-03-04 | 1998-04-07 | Sun Microsystems, Inc. | Methods and apparatus for providing dynamic network file system client authentication |
US5740370A (en) | 1996-03-27 | 1998-04-14 | Clinton Battersby | System for opening cache file associated with designated file of file server only if the file is not subject to being modified by different program |
US5864852A (en) | 1996-04-26 | 1999-01-26 | Netscape Communications Corporation | Proxy server caching mechanism that provides a file directory structure and a mapping mechanism within the file directory structure |
US6330606B1 (en) | 1996-06-03 | 2001-12-11 | Webtv Networks, Inc. | Method and apparatus for dispatching document requests in a proxy |
US6078929A (en) | 1996-06-07 | 2000-06-20 | At&T | Internet file system |
US5787470A (en) | 1996-10-18 | 1998-07-28 | At&T Corp | Inter-cache protocol for improved WEB performance |
US5852717A (en) | 1996-11-20 | 1998-12-22 | Shiva Corporation | Performance optimizations for computer networks utilizing HTTP |
US6182127B1 (en) | 1997-02-12 | 2001-01-30 | Digital Paper, Llc | Network image view server using efficent client-server tilting and caching architecture |
US5933849A (en) | 1997-04-10 | 1999-08-03 | At&T Corp | Scalable distributed caching system and method |
US6243760B1 (en) | 1997-06-24 | 2001-06-05 | Vistar Telecommunications Inc. | Information dissemination system with central and distributed caches |
WO1999003047A1 (en) | 1997-07-11 | 1999-01-21 | Earle Machardy | Content hosting environment system and cache mechanism |
WO1999005619A1 (en) | 1997-07-28 | 1999-02-04 | Icon Cmt Corp. | Dynamically generated document cache system |
US6240461B1 (en) | 1997-09-25 | 2001-05-29 | Cisco Technology, Inc. | Methods and apparatus for caching network data traffic |
WO1999017227A1 (en) | 1997-09-29 | 1999-04-08 | International Business Machines Corporation | Method and system for prefetching information |
US6243719B1 (en) | 1997-10-20 | 2001-06-05 | Fujitsu Limited | Data caching apparatus, data caching method and medium recorded with data caching program in client/server distributed system |
US6128701A (en) | 1997-10-28 | 2000-10-03 | Cache Flow, Inc. | Adaptive and predictive cache refresh policy |
US6490625B1 (en) | 1997-11-26 | 2002-12-03 | International Business Machines Corporation | Powerful and flexible server architecture |
US6298356B1 (en) | 1998-01-16 | 2001-10-02 | Aspect Communications Corp. | Methods and apparatus for enabling dynamic resource collaboration |
US6023726A (en) | 1998-01-20 | 2000-02-08 | Netscape Communications Corporation | User configurable prefetch control system for enabling client to prefetch documents from a network server |
US6185598B1 (en) | 1998-02-10 | 2001-02-06 | Digital Island, Inc. | Optimized network resource location |
US6324685B1 (en) | 1998-03-18 | 2001-11-27 | Becomm Corporation | Applet server that provides applets in various forms |
US6003082A (en) | 1998-04-22 | 1999-12-14 | International Business Machines Corporation | Selective internet request caching and execution system |
US6185608B1 (en) | 1998-06-12 | 2001-02-06 | International Business Machines Corporation | Caching dynamic web pages |
US6330561B1 (en) | 1998-06-26 | 2001-12-11 | At&T Corp. | Method and apparatus for improving end to end performance of a data network |
US6128655A (en) | 1998-07-10 | 2000-10-03 | International Business Machines Corporation | Distribution mechanism for filtering, formatting and reuse of web based content |
US6286043B1 (en) * | 1998-08-26 | 2001-09-04 | International Business Machines Corp. | User profile management in the presence of dynamic pages using content templates |
US6212565B1 (en) | 1998-08-26 | 2001-04-03 | Sun Microsystems, Inc. | Apparatus and method for improving performance of proxy server arrays that use persistent connections |
US6519646B1 (en) * | 1998-09-01 | 2003-02-11 | Sun Microsystems, Inc. | Method and apparatus for encoding content characteristics |
US6393422B1 (en) | 1998-11-13 | 2002-05-21 | International Business Machines Corporation | Navigation method for dynamically generated HTML pages |
US6397246B1 (en) | 1998-11-13 | 2002-05-28 | International Business Machines Corporation | Method and system for processing document requests in a network system |
US6507867B1 (en) * | 1998-12-22 | 2003-01-14 | International Business Machines Corporation | Constructing, downloading, and accessing page bundles on a portable client having intermittent network connectivity |
US6442601B1 (en) | 1999-03-25 | 2002-08-27 | International Business Machines Corporation | System, method and program for migrating files retrieved from over a network to secondary storage |
WO2000072141A2 (en) | 1999-05-25 | 2000-11-30 | Respondtv, Inc. | Method, apparatus, and computer program product for efficient server response generation using intermediate state caching |
Non-Patent Citations (5)
Title |
---|
Official Action in European Application No. 00937517.1 dated May 11, 2005, 5 pages. |
Response to Official Action in European Application No. 00937517.1 dated Sep. 28, 2005, 17 pages. |
Search Report for International Application No. PCT/US2000/009820 dated Jun. 5, 2002, 2 pages. |
Summons to attend oral proceedings pursuant to Rule 115(1) EPC for European Application No. 00937517.1 dated Jul. 2, 2010, 9 pages. |
Written Opinion for International Application No. PCT/US2000/009820 dated Aug. 2, 2002, 2 pages. |
Also Published As
Publication number | Publication date |
---|---|
WO2000072141A3 (en) | 2002-08-15 |
US6513062B1 (en) | 2003-01-28 |
EP1252565A2 (en) | 2002-10-30 |
US6671719B2 (en) | 2003-12-30 |
US20030088649A1 (en) | 2003-05-08 |
WO2000072141A2 (en) | 2000-11-30 |
AU5267000A (en) | 2000-12-12 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
USRE42169E1 (en) | Method, apparatus, and computer program product for efficient server response generation using intermediate state caching | |
US7716306B2 (en) | Data caching based on data contents | |
US6754799B2 (en) | System and method for indexing and retrieving cached objects | |
US8321503B2 (en) | Context-specific network resource addressing model for distributed services | |
US6301614B1 (en) | System and method for efficient representation of data set addresses in a web crawler | |
US7284243B2 (en) | Installing content specific filename systems | |
US7802014B2 (en) | Method and system for class-based management of dynamic content in a networked environment | |
US6757733B2 (en) | Apparatus and method for improving performance of proxy server arrays that use persistent connections | |
US5864852A (en) | Proxy server caching mechanism that provides a file directory structure and a mapping mechanism within the file directory structure | |
US7139747B1 (en) | System and method for distributed web crawling | |
US7574563B2 (en) | Method and system for efficient fragment caching | |
US20070260748A1 (en) | Method and apparatus to reduce the size of objects transmitted over a network | |
US20020184333A1 (en) | Caching signatures | |
US20020052937A1 (en) | Method and apparatus for verifying the contents of a global configuration file | |
US20020169818A1 (en) | Method and apparatus for efficient storage and retrieval of objects in and from an object storage device | |
US20050027731A1 (en) | Compression dictionaries | |
CN105791366A (en) | Large file HTTP-Range downloading method, cache server and system | |
US20040167961A1 (en) | Fragment response cache | |
CN111367921A (en) | Data object refreshing method and device | |
CN116866429A (en) | Data access method and related device | |
US6964052B1 (en) | Caching output from an object in an application server environment | |
JP2005503600A (en) | Method and system for providing message publishing with Dynamic Page Builder over the Internet | |
IES990276A2 (en) | An inter-computer communications apparatus | |
IE990277A1 (en) | An inter-computer communications apparatus | |
GB2339516A (en) | An inter-computer communications method and apparatus |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
AS | Assignment |
Owner name: REHLE VISUAL COMMUNICATIONS LLC, NEVADA Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:GRISCHA CORPORATION, INC.;REEL/FRAME:023938/0200 Effective date: 20050509 Owner name: RESPONDTV, INC., CALIFORNIA Free format text: CHANGE OF NAME;ASSIGNOR:B3TV, INC.;REEL/FRAME:023938/0114 Effective date: 20000719 Owner name: GRISCHA CORPORATION, INC., CALIFORNIA Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:RESPONDTV, INC.;REEL/FRAME:023938/0172 Effective date: 20020628 |
|
FPAY | Fee payment |
Year of fee payment: 8 |
|
CC | Certificate of correction | ||
AS | Assignment |
Owner name: INTELLECTUAL VENTURES I LLC, DELAWARE Free format text: MERGER;ASSIGNOR:REHLE VISUAL COMMUNICATIONS LLC;REEL/FRAME:031881/0511 Effective date: 20131230 |
|
FPAY | Fee payment |
Year of fee payment: 12 |
|
AS | Assignment |
Owner name: INTELLECTUAL VENTURES ASSETS 57 LLC, DELAWARE Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:INTELLECTUAL VENTURES I LLC;REEL/FRAME:043707/0337 Effective date: 20170911 |
|
AS | Assignment |
Owner name: IQ HOLDINGS, LLC, GEORGIA Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:INTELLECTUAL VENTURES ASSETS 57 LLC;REEL/FRAME:044669/0326 Effective date: 20170922 |
|
AS | Assignment |
Owner name: ACCELERATED MEMORY TECH, LLC, GEORGIA Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:IQ HOLDINGS, LLC;REEL/FRAME:044966/0918 Effective date: 20180219 |