US5581704A - System for maintaining data coherency in cache memory by periodically broadcasting invalidation reports from server to client - Google Patents

System for maintaining data coherency in cache memory by periodically broadcasting invalidation reports from server to client Download PDF

Info

Publication number
US5581704A
US5581704A US08/163,335 US16333593A US5581704A US 5581704 A US5581704 A US 5581704A US 16333593 A US16333593 A US 16333593A US 5581704 A US5581704 A US 5581704A
Authority
US
United States
Prior art keywords
processor
client
server
invalidation
cache memory
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
Application number
US08/163,335
Inventor
Daniel Barbara
Tomasz Imielinski
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Panasonic Corp of North America
Original Assignee
Panasonic Technologies Inc
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 Panasonic Technologies Inc filed Critical Panasonic Technologies Inc
Priority to US08/163,335 priority Critical patent/US5581704A/en
Assigned to PANASONIC TECHNOLOGIES, INC. reassignment PANASONIC TECHNOLOGIES, INC. ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: BARBARA, DANIEL, IMIELINSKI, TOMASZ
Priority to JP6302541A priority patent/JPH07248968A/en
Priority to US08/687,689 priority patent/US5706435A/en
Application granted granted Critical
Publication of US5581704A publication Critical patent/US5581704A/en
Assigned to MATSUSHITA ELECTRIC CORPORATION OF AMERICA reassignment MATSUSHITA ELECTRIC CORPORATION OF AMERICA MERGER (SEE DOCUMENT FOR DETAILS). Assignors: PANASONIC TECHNOLOGIES, INC.
Assigned to PANASONIC CORPORATION OF NORTH AMERICA reassignment PANASONIC CORPORATION OF NORTH AMERICA MERGER (SEE DOCUMENT FOR DETAILS). Assignors: MATSUSHITA ELECTRIC CORPORATION OF AMERICA
Anticipated expiration legal-status Critical
Expired - Lifetime legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F12/00Accessing, addressing or allocating within memory systems or architectures
    • G06F12/02Addressing or allocation; Relocation
    • G06F12/08Addressing or allocation; Relocation in hierarchically structured memory systems, e.g. virtual memory systems
    • G06F12/0802Addressing of a memory level in which the access to the desired data or data block requires associative addressing means, e.g. caches
    • G06F12/0806Multiuser, multiprocessor or multiprocessing cache systems
    • G06F12/0815Cache consistency protocols

Definitions

  • the present invention relates generally to the field of cache memories, and in particular to cache memory management strategies for distributed computing environments.
  • a cache memory is a memory that is packaged as an integral component of a processing unit in a computer system.
  • the cache is generally much smaller than main memory. Its purpose is to serve as a buffer between the processors and the memory, emulating the main memory, but with a much faster access time.
  • the cache management strategy also includes algorithms that provide a coherent view of storage to all of the processors in the system.
  • Coherency implies that store operations to a memory location performed by a given processor (e.g., a server) will be made consistent with fetch operations done to the same memory location by another processor (e.g., a client).
  • Coherency provides a means for determining when cached data in a given processor becomes obsolete as a result of store operations performed by another processor.
  • the server maintains a record of which data is cached in each of the clients.
  • coherency is maintained by providing a valid bit for each datum in each respective client's cache.
  • a "cross invalidate" (XI) is the act of invalidating, or marking non-resident, a line in the cache of a remote processor.
  • the server broadcasts XI messages to all of the other processors that may have a copy of the same datum in cache. If a copy of the datum is present in one of these other caches, that copy is marked invalid (e.g., the valid bit is reset) in response to the XI. Only after all copies are marked invalid does the first processor change the target data value. A request for the datum then results in a cache miss.
  • the server does not have to keep track of which clients have copies of each respective datum. Whenever a client needs to access data in its respective cache, it queries the server to verify that its copy of the data is current.
  • Palmtop units are often powered down (taken off-line) for prolonged periods of time to conserve battery energy. Thus, if palmtops are equipped with caches, the palmtops may not always be available to receive cross invalidate messages from the mobile unit support stations, if such messages are sent.
  • the palmtop users do not maintain fixed or universally known positions in the wireless network.
  • a given palmtop unit may be in communication with different mobile unit support stations at different times.
  • the mobile unit support stations cannot predict which palmtop units will be within their respective radio coverage areas at any given time.
  • the mobile unit support stations may be located in proximity to one another, for example, within a single building or campus, it is contemplated that palmtop machines will also communicate over conventional cellular communications networks as well.
  • the communications bandwidth may be limited (e.g., 10 to 20 kilobits per second).
  • the bandwidth places a limit on the number of queries to which the server can respond in a given period of time. Because of the limited bandwidth in the cellular environment, it is impractical for each palmtop to query the mobile unit support station for a complete database refresh each time the palmtop user wishes to access data after returning to the on-line state.
  • the mobility of the palmtops, their frequent unavailability to receive XI messages, and communications bandwidth limitations make caching of data within the palmtops by the conventional paradigms difficult.
  • palmtops may be used by consumers to access data that are updated with a frequency that is much smaller than the frequency of queries sent from the clients to the server.
  • some palmtop applications may tolerate a small, known probability that the data in the palmtop are considered to be current when in fact the data have been updated (For example, when updates are infrequent and are minor).
  • the prior art cache management strategies for distributed systems may be inefficient.
  • An improved method for maintaining a coherent view of the data in the cache of each mobile unit is desired. Desirably, the improved method would not require the mobile units to stay on-line at all times, and would not require a full cache refresh each time a mobile unit is turned on.
  • the invention is a method and system for maintaining coherency between a server processor and a client processor that has a cache memory.
  • the server stores a plurality of data values
  • the client stores a subset of the plurality of data values in the cache.
  • the server processor periodically broadcasts invalidation reports to the client processor.
  • Each respective invalidation report includes information identifying which, if any, of the plurality of data values have been updated within a predetermined period of time before the server processor broadcasts the respective invalidation report.
  • the client processor determines, based on the invalidation reports, whether a selected data value in the cache memory of the client processor has been updated in the server processor since the selected data value was stored in the cache memory.
  • the client processor invalidates the selected data value in the cache memory of the client processor, if the selected data value has been updated in the server processor.
  • FIG. 1 is a block diagram of an exemplary system in accordance with the invention.
  • FIG. 2 is a flow chart diagram of a method for maintaining cache coherency in the system of FIG. 1.
  • FIG. 3A is a detailed flow chart diagram of an exemplary method for forming and broadcasting invalidation reports as shown in FIG. 1.
  • FIG. 3B is a flow chart diagram of an exemplary method for processing the invalidation reports produced by the method shown in FIG. 3A.
  • FIG. 4A is a detailed flow chart diagram of a second exemplary method for forming and broadcasting invalidation reports as shown in FIG. 1.
  • FIG. 4B is a flow chart diagram of an exemplary method for processing the invalidation reports produced by the method shown in FIG. 4A.
  • FIG. 5A is a detailed flow chart diagram of a third exemplary method for forming and broadcasting invalidation reports as shown in FIG. 1.
  • FIG. 5B is a flow chart diagram of an exemplary method for processing the invalidation reports produced by the method shown in FIG. 5A.
  • FIG. 1 is a block diagram of an exemplary system in accordance with the invention, for maintaining coherency between data stored in one or more server processors 10a-10d and one or more client processors 20a-20f.
  • the invention may be used advantageously in an environment in which the clients are taken off-line part of the time and are not available to receive invalidation messages at all times.
  • the invention also may be used advantageously in environments in which the frequency of data updates by the server 10a-10d is much less than the frequency of queries by the clients 20a-20f.
  • Each server 10a-10d stores a plurality of data values.
  • the servers 10a-10d all have access to a common body of data.
  • the servers 10a-10d may, for example, include databases covering a variety of subjects, such as financial data, news, weather, documents, etc. Such data may be accessed by palmtop computers 20a-20f over a cellular network.
  • the servers 10a-10d are coupled via communications links to one or more client processors 20a-20f.
  • Each of the clients 20a-20f has a respective cache memory 22 for storing a subset of the of the data that are stored in the servers 10a-10d.
  • the cache memories (not shown) in the remaining clients 20b-20f may be identical to cache 22. Any of the clients 20a-20f may store copies of any subset of the data in its respective cache 22. Therefore the contents of the caches 22 may differ.
  • the servers 10a-10d are connected to each other by a fixed (i.e., stationary) network 18 and the couplings between the servers 10a-10d and the clients 20a-20f are wireless.
  • the exemplary clients 20a-20f are mobile units (MU), such as palmtop computers.
  • the exemplary servers 10a-10d are mobile unit support stations (MSS). Each MSS 10a-10d communicates within a respective radio coverage area called a cell 12a-12d.
  • An MU 20a-20f may move between any of the cells 12a-12d.
  • FIG. 2 is a flow chart diagram showing an exemplary process according to the invention.
  • Each server 10a-10d includes a process for forming and broadcasting periodic invalidation reports to any of the clients 20a-20f currently located within its respective cell 12a-12d.
  • the server begins to periodically form and broadcast invalidation reports.
  • Each invalidation report includes information identifying which of the data values stored in the server 10a-10d have been updated within a predetermined interval of time (hereinafter referred to as a window), before the server 10a-10d broadcasts that invalidation report.
  • the period of the broadcasts may be the same as, or different from, the length of the window. For example, the window may be six to ten times as long as the period.
  • the servers 10a-10d broadcast the reports over a wireless medium (e.g., radio frequency).
  • the servers 10a-10d need not maintain records of which clients are located in each respective cell 12a-12d, or of the contents of the respective cache 22 of each client 20a-20f.
  • each client 20a-20f receives the invalidation reports if the client is turned on and is in an on-line state.
  • each client 20a-20f determines whether any of the data in its respective cache memory 22 are copies of data that have been updated in the server 10a-10d since the time that the copies were stored in the cache 22. If so, then the copies of the data in the cache 22 are invalid.
  • the clients 20a-20f determine which data have been updated in the servers 10a-10d. Then at step 108, the clients 20a-20f mark these data invalid in the cache 22.
  • the clients 20a-20f query the respective servers 10a-10d for any requested data that are not present in cache 22.
  • the clients 20a-20f may be taken off-line at any time.
  • the clients 20a-20f may be carried around by the operators from one location to another (and perhaps from one cell 12a-12d to another).
  • the palmtop computers may not always be needed.
  • a palmtop computer is not needed (step 112), it may be taken off-line at step 114 to conserve battery power.
  • the clients 20a-20f may update their caches in response to the invalidation reports received after returning to an on-line state, even though the clients 20a-20f miss some of the invalidation reports when the clients 20a-20f are off-line.
  • the invalidation reports contain "cumulative" information sufficient to enable the clients 20a-20f to determine all data that have been invalidated during the window time. This may be accomplished so long as the off-line time does not exceed the window time at step 120. If the off-line time does exceed the window time at step 120, then all items in the cache are invalidated at step 122.
  • the invalidation report does not indicate that a datum is invalid, and the client has not been off-line for a time greater than the window, then the data in the client's cache 22 are presumed by the client to be valid as of the time the invalidation report is broadcast. Note that some latency is introduced into the query process when the clients 20a-20f wait for the report. In between reports, a datum may be updated in the server 10a-10d; the clients 20a-20f are not notified until the next report is broadcast. Thus the period between validation reports is selected to be small enough, relative to the update frequency, so that the risk of using "stale" data in between reports is reduced to an acceptable level.
  • the method shown in FIG. 2. may reduce the number of queries that each client 20a-20f must make to refresh its cache after a request for data. By reducing the number of queries, the traffic loading between the servers 10a-10d and the clients 20a-20f is reduced, and it is possible to serve a greater number of clients 20a-20f, or handle a larger database in the server 10a-10d.
  • the clients 20a-20f accept invalidation reports from any of the servers 10a-10d when the clients are located within the respective cells 12a-12d of those servers 10a10d. Upon return to an on-line state, the client 20a-20f accepts the next invalidation report broadcast by the nearest server 10a-10d, determines which data in the cache 22 are invalid based on the invalidation report, and invalidates any of the data in the cache 22 that the client 20a-20f determines to be invalid.
  • Another exemplary application for the invention is in a retail store, such as a supermarket.
  • Consumers may carry portable devices throughout the store. These portable devices may be equipped with scanners (e.g., optical or magnetic scanners) for reading product labels.
  • the devices scan the product labels, query the server for the prices, and store the prices in cache.
  • the consumers may use the stored prices to compute the total cost of an order of goods.
  • This is an example of a query intensive environment, in which the server may only update a given price once per day or once per week, but the clients query the server many times per hour.
  • the invention may be implemented in many different ways, including but not limited to the exemplary embodiments, described below.
  • the contents and frequency of the invalidation reports, and the response of the client processors upon receipt of the reports is selected based on the nature of the environment.
  • the goal of selecting a particular strategy is to limit the number of queries from the client processors in a given time interval to a number less than the maximum number of queries that may be satisfied by the server in that interval.
  • Specific factors that may be considered in defining the strategy include the frequency of updates to the data, the frequency of queries, and the fractional time that each client is in the on-line state.
  • One extreme end of the spectrum is the environment in which updates are very frequent relative to queries. In such a situation, the cache hit ratio is expected to be very low, regardless of which method for maintaining cache coherency. In such an environment, the use of a cache in each client may not be efficient. That is, performance may be much the same regardless of whether a cache is included in the client configuration.
  • the invention is most effective at the other end of the spectrum (when updates are infrequent and requests for data are frequent, so that the cache hit ratio is high).
  • Each of the strategies may provide better system performance (defined by the number of queries to which the server 10a a can respond per unit of time) in a respectively different environment.
  • the environment in which that strategy may be preferred is described.
  • the inventors have determined that the first exemplary embodiment provides the greatest throughput when the client processors 20a-20f are on-line all, or nearly all of the time (In other words, if the time on-line is several times greater than the time off-line).
  • This exemplary embodiment is referred to herein as "Broadcasting Addresses" and is shown in FIGS. 3A and 3B.
  • the servers 10a-10d store a list of the addresses of each respective datum that has been updated since the last invalidation report was broadcast.
  • the clients 20a-20f invalidate the items on the list.
  • a client 20a invalidates every datum in its cache 22 if it has missed one or more reports, as explained in detail below.
  • FIG. 3A is a flow chart diagram of the process executed by the server 10a to create and broadcast the invalidation reports.
  • the list of updated data is cleared.
  • each of the data in the server 10a that is shared with the clients 20a-20f is checked to determine whether the datum has been updated since the last invalidation report.
  • the address of that datum is added to the list.
  • the report is broadcast to the clients. The report only includes the list of addresses. This method results in a very short invalidation report. This minimizes the fraction of the available bandwidth used for transmitting invalidation reports, and allows the server to broadcast responses to more queries.
  • FIG. 3B is a flow chart diagram of the process executed by the client 20a when it receives the invalidation report created by the process shown in FIG. 3A.
  • the process begins when the client is on-line, either continuously or after a period of off-line status.
  • the client 20a receives the next invalidation report broadcast from the server 10a.
  • the client determines whether any reports have been missed, based on the time that the last report was received by the client.
  • the period of the reports is a predetermined time interval that is known to the clients (Alternatively, the period of the reports or the time of the last prior report may be included as an item in the report).
  • the client 20a can determine whether any reports were sent from the server 10a and not received by the client 20a.
  • step 214 if the client determines that one or more reports have been missed at step 214, then every entry in the cache 22 is invalidated at step 226. Steps 216 to 220 are repeated for each valid datum in the cache, if the client has not missed any reports at step 214.
  • the invalidation report is checked to determine whether the address of that datum is in the report. If the address of the datum is in the report at step 218, then the datum is marked invalid at step 220. The items remaining in cache after steps 216 to 220 are executed are presumed to be valid.
  • the client 20a queries the server for the current value of any datum that is needed and not resident in cache.
  • step 224 when the client's work is completed, the client 20a may be powered down to the off-line state.
  • the invalidation reports produced by Broadcasting Addresses do not include any timestamp information for the individual items listed in the report.
  • clients 20a-20f that have been continuously on-line assume that any data in cache that are not listed in the most recently received report are still valid. If any addresses are listed in a report, the clients 20a-20f assume that the data stored at the addresses listed were all updated immediately after the last previous report. This may cause a client 20a to misdiagnose a datum as invalid, increasing the query rate.
  • a server 10a broadcasts a report at time TO and updates a datum at time T1; (2) the client 20a returns to an on-line state and queries the server for the same datum at time T2; and (3) the server responds to the query at time T3 and issues the next invalidation report at time T4. Even though the client 20a receives the updated value of the datum at T3, upon receipt of the invalidation report at T4, the client assumes that the datum was updated immediately before T4. The client incorrectly diagnoses the copy of the datum received at T3 as invalid.
  • the first exemplary method Broadcasting Addresses
  • the invalidation report may be relatively small, because it only requires an address for each datum.
  • Broadcasting Addresses may be preferable for continuous and near-continuous client operation.
  • n number of data in server
  • Broadcasting Timestamps may provide better throughput for query intensive environments in which queries are several (e.g., seven or more) orders of magnitude more frequent than updates, and the client processors 20a-20f are on-line a substantial fraction of the time (but not substantially all of the time).
  • queries are several (e.g., seven or more) orders of magnitude more frequent than updates
  • client processors 20a-20f are on-line a substantial fraction of the time (but not substantially all of the time).
  • FIGS. 4A and 4B both the servers 10a-10d and the clients 20a-20f store timestamps which identify the time at which each respective datum was last updated, as explained in detail below.
  • FIG. 4A is a flow chart diagram of the method of Broadcasting Timestamps.
  • the server 10a stores a respective timestamp for each respective datum that is included in the common data shared with the other servers 10b-10d and the clients 20a-20f. Each timestamp identifies the time at which the respective datum was most recently updated.
  • the server 10a repeats step 152 for each datum.
  • the server 10a checks the timestamp of a datum to determine whether the datum was updated within the predetermined time window preceding the execution of step 152. If the datum was updated within the window, then at step 156 the address of the datum and the timestamp of the datum are added to the invalidation report currently being prepared. After steps 152 and 156 (if applicable) are repeated for each datum, at step 154 the server 10a sets a report timestamp in the invalidation report to the current time and broadcasts the report to all clients 20a within its respective cell 12a.
  • FIG. 4B is a flow chart diagram of the steps executed by the clients 20a-20f to process the invalidation reports produced by the process of FIG. 4A.
  • Step 158 begins the process with the client 20a on-line.
  • the client 20a may have been operating continuously prior to this time, or the client 20a may have just returned to the on-line state.
  • step 160 the next invalidation report broadcast by the server 10a is received.
  • Steps 162-166 and 172-174 are repeated for each datum in the cache 22 of client 20a, if applicable.
  • the client 20a determines whether the address of the datum is listed in the invalidation report. If so, then at step 166, the datum is marked invalid in the cache 22. If the datum is not listed in the report, then at step 172, the respective timestamp stored in cache and associated with the address of the datum is checked to determine whether the timestamp (i.e., the time that a report was last received by the client) was within the window of time immediately preceding the report.
  • the client has not processed any reports within the window (e.g., because the client was off-line, because the server failed to issue a report, or because of a communications error), so the datum is presumed to be invalid. In this case, at step 166, the datum is marked invalid in the cache 22.
  • the timestamp of the datum is within the window preceding the timestamp of the report, then the datum is presumed to be valid, because the server 10a includes in the report the timestamps of all updates that occurred within the window. In this case, at step 174, the timestamp of the datum is changed to the timestamp of the report.
  • the client 20a queries the server for the current values of any data needed by the client 20a and not resident in the cache 22.
  • the client 20a may be turned off.
  • the provision of a window serves several functions. By limiting the earliest time for which the server must include updates in the invalidation reports, the report length is shortened, so that less bandwidth is used in transmitting the reports. A larger fraction of the bandwidth is then available for responding to queries. The size of the queue within the server 10a that maintains the addresses and timestamps of all updated data is also shortened.
  • Window size in seconds equal to kL where k is an integer
  • n.sub. ⁇ Expected number of updates per window equals n(1-e - ⁇ )
  • n number of data in server
  • the method of Broadcasting Timestamps may be employed generally without regard to the content or type of data stored in the servers 10a-10d and clients 20a-20f. This is advantageous for systems that share many different databases including respectively different types of data among the processors. In some environments, where only a limited number of data types are present, it may be advantageous to tailor the invalidation reports to the specific type of data being handled. If the invalidation reports are tailored to particular types of data, then the invalidation reports may be compressed.
  • the client processors store the prices of a subset of the goods stocked in the store.
  • the goods may be assigned to a predefined set of categories (e.g., meat, canned goods, cleaning products, dairy products, etc.).
  • the invalidation reports may include flags that are set to indicate that the prices of all items in a category (e.g., all meat items) were updated at a given time. It would not be necessary to broadcast the respective timestamp and address of each individual item.
  • the client 20a Upon receipt of an invalidation report in which a flag is set, the client 20a invalidates all of the data within the category indicated by that flag. This is advantageous in environments in which most or all of the items in a category are likely to be updated at the same time.
  • a third exemplary method according to the invention may provide better throughput when the clients 20a-20f are off-line most of the time.
  • the third method may also provide better throughput when the frequency of queries is a few orders of magnitude greater than the frequency of updates.
  • the third method hereinafter referred to as "Broadcasting Signatures" involves a comparison between the a first set of signatures based on the contents of the server 10a and a second set of signatures based on the contents of the cache 22 of client 20a. This method is shown in FIGS. 5A and 5B.
  • the invalidation report provides information about the current state of the server 10a.
  • FIG. 5A is a flow chart diagram showing the process performed by the server to generate the invalidation reports.
  • Signatures are checksums computed over the values of data in the server.
  • the data in the server are divided into pages, and a signature is computed for each page, forming a complete set of individual page signatures.
  • the combined signatures are formed.
  • a subset of the individual signatures are combined to form a combined signature by forming the Exclusive OR (XOR) of the subset of individual signatures.
  • the combined signature is added to the report.
  • a plurality of different subsets (each including the individual signatures from a respectively different subset of the pages) are thus combined to form a plurality of combined signatures.
  • the report is broadcast to the clients 20a-20f.
  • FIG. 5B is a flow chart diagram of the signature processing performed by the clients 20a-20f.
  • the client 20a receives the invalidation report from the server 10a.
  • the clients 20a-20f typically do not include copies of all of the server's data in cache 22. Only some of the subsets of the pages in the server 10a are copied in each cache. Steps 282-290 are repeated for each respective subset of the server pages stored in the cache 22 (each subset corresponding to a respective combined signature).
  • the client 20a performs a process similar to steps 250 to 256 (performed by the server 10a, as shown in FIG. 5A).
  • the client 20a computes an individual signature for each page in the cache 22, and forms the combined signatures (as the Exclusive OR of a subset of the individual signatures). The client 20a only computes combined signatures for the subsets of the data that are of used by the client 20a.
  • composition of the combined signatures broadcast in the invalidation reports by the server is statically defined, so that each client recognizes the format of the reports, and each client is able to identify those combined signatures that are relevant to the pages copied in its cache 22.
  • the client 20a compares its combined signature to the combined signature received in the invalidation report.
  • a combined signature in a report is equal to the respective combined signature in the cache 22
  • the probability that one or more items covered by the combined signature are different from one another i.e., the copy of the data in cache is invalid
  • the probability is approximately 2 -s , where s is the number of bits in the combined signature.
  • This probability may be limited to a desired value by selecting an appropriate number of bits for the combined signature.
  • a combined signature in the report is different from the corresponding combined signature in the cache 22, then one or more of the data covered by that combined signature have been updated in the server 10a.
  • several respectively different combined signatures are included in the report.
  • Each page in the cache may be included in several different subsets of the pages in the server, and each page is thus covered by several combined signatures.
  • Steps 288 and 290 are repeated for each datum in each page represented by the non-matching combined signature.
  • a counter for each datum represented by the combined signature is incremented.
  • steps 282 to 290 have been repeated for each subset of the pages in cache, then steps 292 to 296 are repeated for each datum in cache.
  • the number of non-matching combined signatures associated with each respective datum is determined by the value of the respective counter for that datum.
  • the datum is determined to be invalid and is marked invalid.
  • steps 292-296 have been repeated for each datum in cache, at step 298 the client 20a may query the server 10a for any data that are required and not resident in cache 22.
  • the respective counters for each respective datum in a page of the cache all have the same value, even though as few as one datum may actually have been updated. This means that an update to one datum causes all other data in the same page as the updated datum to be invalidated in the cache 22 of the client 20a.
  • the page size may be made arbitrarily small (even a single datum per page), to minimize the number of data that are unnecessarily invalidated in this manner. The tradeoff is that, as the page size becomes smaller, the number of pages becomes greater.
  • the state based method of Broadcasting Signatures is different from Broadcasting Addresses (FIGS. 3A and 3B) and Broadcasting Timestamps (FIGS. 4A and 4B), both of which are history based (i.e., transactional). Because each invalidation report containing signatures provides information regarding all data in the server 10a, the client 20a can determine whether each datum in its cache 22 is invalid, even if the client 20a has returned to an on-line state after missing several invalidation reports.
  • Broadcasting Signatures the client 20a need not invalidate all of the items in cache 22 if the off-line time exceeds a predetermined "window", as in Broadcasting Timestamps. (In this sense, Broadcasting Signatures functions as if a window of infinite duration is used). Thus, Broadcasting Signatures may provide better throughput in an environment in which the clients are off-line a substantial fraction of the time. Furthermore, if the ratio of queries to updates is not very high (e.g., 1,000 to 1), the average report size for Broadcasting Timestamps becomes larger as more items are invalidated, reducing throughput by that method. This factor makes Broadcasting Signatures advantageous when the frequency of queries is not several orders of magnitude greater than the frequency of updates.
  • each set there are m randomly chosen (a priori, before any exchange of signatures occurs) sets of data.
  • the members of each set are randomly chosen so that a datum has the probability 1/(1+f) of being included in each set (where f is the number of different pages).
  • n number of data in server
  • the method of Broadcasting Signatures is more effective when there are relatively few differences between the data in the server 10a and the data in the client 20a. This condition is present if the product of the average time a client is taken off-line multiplied by the frequency of updates is not very large.
  • Broadcasting Signatures may provide better throughput than Broadcasting Addresses or Broadcasting Timestamps in the mobile wireless computing environment, because limited battery capacity and the costs of maintaining a lengthy session over a cellular communications link make it advantageous to keep palmtop computers off-line when possible. Furthermore, Broadcasting Signatures may provide better throughput than Broadcasting Timestamps in situations in which the query rate only exceeds the update rate by a few orders of magnitude.

Abstract

A method and system are provided for maintaining coherency between a server processor and a client processor that has a cache memory. The server may, for example, be a fixed location mobile unit support station. The client may, for example, be a palmtop computer. The server stores a plurality of data values, and the client stores a subset of the plurality of data values in the cache. The server processor periodically broadcasts invalidation reports to the client processor. Each respective invalidation report includes information identifying which, if any, of the plurality of data values have been updated within a predetermined period of time before the server processor broadcasts the respective invalidation report. The client processor determines, based on the invalidation reports, whether a selected data value in the cache memory of the client processor has been updated in the server processor since the selected data value was stored in the cache memory. The client processor invalidates the selected data value in the cache memory of the client processor, if the selected data value has been updated in the server processor.

Description

FIELD OF THE INVENTION
The present invention relates generally to the field of cache memories, and in particular to cache memory management strategies for distributed computing environments.
BACKGROUND OF THE INVENTION
A cache memory is a memory that is packaged as an integral component of a processing unit in a computer system. The cache is generally much smaller than main memory. Its purpose is to serve as a buffer between the processors and the memory, emulating the main memory, but with a much faster access time.
For multiprocessor systems, the cache management strategy also includes algorithms that provide a coherent view of storage to all of the processors in the system. Coherency implies that store operations to a memory location performed by a given processor (e.g., a server) will be made consistent with fetch operations done to the same memory location by another processor (e.g., a client). Coherency provides a means for determining when cached data in a given processor becomes obsolete as a result of store operations performed by another processor.
In the Andrew file system, for example, the server maintains a record of which data is cached in each of the clients. Typically, coherency is maintained by providing a valid bit for each datum in each respective client's cache. A "cross invalidate" (XI) is the act of invalidating, or marking non-resident, a line in the cache of a remote processor. When a server needs to change the value of a datum, the server broadcasts XI messages to all of the other processors that may have a copy of the same datum in cache. If a copy of the datum is present in one of these other caches, that copy is marked invalid (e.g., the valid bit is reset) in response to the XI. Only after all copies are marked invalid does the first processor change the target data value. A request for the datum then results in a cache miss.
In the Network File System, the server does not have to keep track of which clients have copies of each respective datum. Whenever a client needs to access data in its respective cache, it queries the server to verify that its copy of the data is current.
The paradigms described above work well when all of the processors in the system are active at the same time, and when the communications paths between the processors are static. Typically, this has been the case when all of the processors are collocated and are operated continuously.
The introduction of wireless cellular communications and palmtop computers into the marketplace introduces new capabilities and also poses new technical challenges. The need to share data in this distributed and mobile environment presents one of these challenges. It is desirable to share data among fixed location mobile unit support stations and mobile palmtop units.
The conditions in a mobile wireless computing environment differ from those encountered in the static, collocated multiprocessor systems described above. In the mobile environment, a large number of users equipped with low powered palmtop machines may query databases over wireless communications channels. Palmtop units are often powered down (taken off-line) for prolonged periods of time to conserve battery energy. Thus, if palmtops are equipped with caches, the palmtops may not always be available to receive cross invalidate messages from the mobile unit support stations, if such messages are sent.
Furthermore, the palmtop users do not maintain fixed or universally known positions in the wireless network. A given palmtop unit may be in communication with different mobile unit support stations at different times. The mobile unit support stations cannot predict which palmtop units will be within their respective radio coverage areas at any given time.
Although the mobile unit support stations may be located in proximity to one another, for example, within a single building or campus, it is contemplated that palmtop machines will also communicate over conventional cellular communications networks as well. In the latter case, the communications bandwidth may be limited (e.g., 10 to 20 kilobits per second). The bandwidth places a limit on the number of queries to which the server can respond in a given period of time. Because of the limited bandwidth in the cellular environment, it is impractical for each palmtop to query the mobile unit support station for a complete database refresh each time the palmtop user wishes to access data after returning to the on-line state. The mobility of the palmtops, their frequent unavailability to receive XI messages, and communications bandwidth limitations make caching of data within the palmtops by the conventional paradigms difficult.
The above identified factors tend to make communications with palmtop machines more complex. At the same time, some of the constraints that have driven the design of many prior art systems may not apply in some of the applications for palmtop computers. For example, palmtops may be used by consumers to access data that are updated with a frequency that is much smaller than the frequency of queries sent from the clients to the server. Additionally, some palmtop applications may tolerate a small, known probability that the data in the palmtop are considered to be current when in fact the data have been updated (For example, when updates are infrequent and are minor). For such applications, the prior art cache management strategies for distributed systems may be inefficient.
An improved method for maintaining a coherent view of the data in the cache of each mobile unit is desired. Desirably, the improved method would not require the mobile units to stay on-line at all times, and would not require a full cache refresh each time a mobile unit is turned on.
SUMMARY OF THE INVENTION
The invention is a method and system for maintaining coherency between a server processor and a client processor that has a cache memory. The server stores a plurality of data values, and the client stores a subset of the plurality of data values in the cache.
The server processor periodically broadcasts invalidation reports to the client processor. Each respective invalidation report includes information identifying which, if any, of the plurality of data values have been updated within a predetermined period of time before the server processor broadcasts the respective invalidation report.
The client processor determines, based on the invalidation reports, whether a selected data value in the cache memory of the client processor has been updated in the server processor since the selected data value was stored in the cache memory. The client processor invalidates the selected data value in the cache memory of the client processor, if the selected data value has been updated in the server processor.
BRIEF DESCRIPTION OF THE FIGURES
FIG. 1 is a block diagram of an exemplary system in accordance with the invention.
FIG. 2 is a flow chart diagram of a method for maintaining cache coherency in the system of FIG. 1.
FIG. 3A is a detailed flow chart diagram of an exemplary method for forming and broadcasting invalidation reports as shown in FIG. 1.
FIG. 3B is a flow chart diagram of an exemplary method for processing the invalidation reports produced by the method shown in FIG. 3A.
FIG. 4A is a detailed flow chart diagram of a second exemplary method for forming and broadcasting invalidation reports as shown in FIG. 1.
FIG. 4B is a flow chart diagram of an exemplary method for processing the invalidation reports produced by the method shown in FIG. 4A.
FIG. 5A is a detailed flow chart diagram of a third exemplary method for forming and broadcasting invalidation reports as shown in FIG. 1.
FIG. 5B is a flow chart diagram of an exemplary method for processing the invalidation reports produced by the method shown in FIG. 5A.
DETAILED DESCRIPTION OVERVIEW
FIG. 1 is a block diagram of an exemplary system in accordance with the invention, for maintaining coherency between data stored in one or more server processors 10a-10d and one or more client processors 20a-20f. The invention may be used advantageously in an environment in which the clients are taken off-line part of the time and are not available to receive invalidation messages at all times. The invention also may be used advantageously in environments in which the frequency of data updates by the server 10a-10d is much less than the frequency of queries by the clients 20a-20f.
Each server 10a-10d stores a plurality of data values. The servers 10a-10d all have access to a common body of data. The servers 10a-10d may, for example, include databases covering a variety of subjects, such as financial data, news, weather, documents, etc. Such data may be accessed by palmtop computers 20a-20f over a cellular network.
The servers 10a-10d are coupled via communications links to one or more client processors 20a-20f. Each of the clients 20a-20f has a respective cache memory 22 for storing a subset of the of the data that are stored in the servers 10a-10d. For simplicity, only one cache memory 22 in client 20a is shown in FIG. 1. The cache memories (not shown) in the remaining clients 20b-20f may be identical to cache 22. Any of the clients 20a-20f may store copies of any subset of the data in its respective cache 22. Therefore the contents of the caches 22 may differ.
In the exemplary embodiment, the servers 10a-10d are connected to each other by a fixed (i.e., stationary) network 18 and the couplings between the servers 10a-10d and the clients 20a-20f are wireless. The exemplary clients 20a-20f are mobile units (MU), such as palmtop computers. The exemplary servers 10a-10d are mobile unit support stations (MSS). Each MSS 10a-10d communicates within a respective radio coverage area called a cell 12a-12d. An MU 20a-20f may move between any of the cells 12a-12d.
FIG. 2 is a flow chart diagram showing an exemplary process according to the invention.
Each server 10a-10d includes a process for forming and broadcasting periodic invalidation reports to any of the clients 20a-20f currently located within its respective cell 12a-12d. At step 100, the server begins to periodically form and broadcast invalidation reports. Each invalidation report includes information identifying which of the data values stored in the server 10a-10d have been updated within a predetermined interval of time (hereinafter referred to as a window), before the server 10a-10d broadcasts that invalidation report. The period of the broadcasts may be the same as, or different from, the length of the window. For example, the window may be six to ten times as long as the period. The servers 10a-10d broadcast the reports over a wireless medium (e.g., radio frequency). The servers 10a-10d need not maintain records of which clients are located in each respective cell 12a-12d, or of the contents of the respective cache 22 of each client 20a-20f.
At step 104, each client 20a-20f receives the invalidation reports if the client is turned on and is in an on-line state. At step 106, based on the invalidation reports, each client 20a-20f determines whether any of the data in its respective cache memory 22 are copies of data that have been updated in the server 10a-10d since the time that the copies were stored in the cache 22. If so, then the copies of the data in the cache 22 are invalid. At step 106, the clients 20a-20f determine which data have been updated in the servers 10a-10d. Then at step 108, the clients 20a-20f mark these data invalid in the cache 22. At step 110, the clients 20a-20f query the respective servers 10a-10d for any requested data that are not present in cache 22.
According to an advantageous aspect of the invention, the clients 20a-20f may be taken off-line at any time. For example, if clients 20a-20f are palmtop computers, the clients 20a-20f may be carried around by the operators from one location to another (and perhaps from one cell 12a-12d to another). The palmtop computers may not always be needed. When a palmtop computer is not needed (step 112), it may be taken off-line at step 114 to conserve battery power.
At steps 116-120, the clients 20a-20f may update their caches in response to the invalidation reports received after returning to an on-line state, even though the clients 20a-20f miss some of the invalidation reports when the clients 20a-20f are off-line. The invalidation reports contain "cumulative" information sufficient to enable the clients 20a-20f to determine all data that have been invalidated during the window time. This may be accomplished so long as the off-line time does not exceed the window time at step 120. If the off-line time does exceed the window time at step 120, then all items in the cache are invalidated at step 122.
If the invalidation report does not indicate that a datum is invalid, and the client has not been off-line for a time greater than the window, then the data in the client's cache 22 are presumed by the client to be valid as of the time the invalidation report is broadcast. Note that some latency is introduced into the query process when the clients 20a-20f wait for the report. In between reports, a datum may be updated in the server 10a-10d; the clients 20a-20f are not notified until the next report is broadcast. Thus the period between validation reports is selected to be small enough, relative to the update frequency, so that the risk of using "stale" data in between reports is reduced to an acceptable level.
The method shown in FIG. 2. may reduce the number of queries that each client 20a-20f must make to refresh its cache after a request for data. By reducing the number of queries, the traffic loading between the servers 10a-10d and the clients 20a-20f is reduced, and it is possible to serve a greater number of clients 20a-20f, or handle a larger database in the server 10a-10d.
According to another aspect of the invention, the clients 20a-20f accept invalidation reports from any of the servers 10a-10d when the clients are located within the respective cells 12a-12d of those servers 10a10d. Upon return to an on-line state, the client 20a-20f accepts the next invalidation report broadcast by the nearest server 10a-10d, determines which data in the cache 22 are invalid based on the invalidation report, and invalidates any of the data in the cache 22 that the client 20a-20f determines to be invalid.
Another exemplary application for the invention is in a retail store, such as a supermarket. Consumers may carry portable devices throughout the store. These portable devices may be equipped with scanners (e.g., optical or magnetic scanners) for reading product labels. The devices scan the product labels, query the server for the prices, and store the prices in cache. The consumers may use the stored prices to compute the total cost of an order of goods. This is an example of a query intensive environment, in which the server may only update a given price once per day or once per week, but the clients query the server many times per hour.
THE EXEMPLARY EMBODIMENTS
The invention may be implemented in many different ways, including but not limited to the exemplary embodiments, described below. The contents and frequency of the invalidation reports, and the response of the client processors upon receipt of the reports is selected based on the nature of the environment. The goal of selecting a particular strategy is to limit the number of queries from the client processors in a given time interval to a number less than the maximum number of queries that may be satisfied by the server in that interval. Specific factors that may be considered in defining the strategy include the frequency of updates to the data, the frequency of queries, and the fractional time that each client is in the on-line state.
One extreme end of the spectrum is the environment in which updates are very frequent relative to queries. In such a situation, the cache hit ratio is expected to be very low, regardless of which method for maintaining cache coherency. In such an environment, the use of a cache in each client may not be efficient. That is, performance may be much the same regardless of whether a cache is included in the client configuration. The invention is most effective at the other end of the spectrum (when updates are infrequent and requests for data are frequent, so that the cache hit ratio is high).
Three alternative strategies for defining the contents of the invalidation reports are described below. Each of the strategies may provide better system performance (defined by the number of queries to which the server 10a a can respond per unit of time) in a respectively different environment. For each respective strategy described below, the environment in which that strategy may be preferred is described.
The inventors have determined that the first exemplary embodiment provides the greatest throughput when the client processors 20a-20f are on-line all, or nearly all of the time (In other words, if the time on-line is several times greater than the time off-line). This exemplary embodiment is referred to herein as "Broadcasting Addresses" and is shown in FIGS. 3A and 3B. In this embodiment, the servers 10a-10d store a list of the addresses of each respective datum that has been updated since the last invalidation report was broadcast. The clients 20a-20f invalidate the items on the list. A client 20a invalidates every datum in its cache 22 if it has missed one or more reports, as explained in detail below.
FIG. 3A is a flow chart diagram of the process executed by the server 10a to create and broadcast the invalidation reports. At step 200, the list of updated data is cleared. At steps 201 and 202, each of the data in the server 10a that is shared with the clients 20a-20f is checked to determine whether the datum has been updated since the last invalidation report. At step 204, if an item has been updated, the address of that datum is added to the list. At step 206, after each datum is checked, the report is broadcast to the clients. The report only includes the list of addresses. This method results in a very short invalidation report. This minimizes the fraction of the available bandwidth used for transmitting invalidation reports, and allows the server to broadcast responses to more queries.
FIG. 3B is a flow chart diagram of the process executed by the client 20a when it receives the invalidation report created by the process shown in FIG. 3A. At step 210, the process begins when the client is on-line, either continuously or after a period of off-line status. At step 212, the client 20a receives the next invalidation report broadcast from the server 10a. Then, at step 214, the client determines whether any reports have been missed, based on the time that the last report was received by the client. The period of the reports is a predetermined time interval that is known to the clients (Alternatively, the period of the reports or the time of the last prior report may be included as an item in the report). Thus, the client 20a can determine whether any reports were sent from the server 10a and not received by the client 20a.
In the first exemplary embodiment of the invention, if the client determines that one or more reports have been missed at step 214, then every entry in the cache 22 is invalidated at step 226. Steps 216 to 220 are repeated for each valid datum in the cache, if the client has not missed any reports at step 214. At step 218, for each datum in the cache 22, the invalidation report is checked to determine whether the address of that datum is in the report. If the address of the datum is in the report at step 218, then the datum is marked invalid at step 220. The items remaining in cache after steps 216 to 220 are executed are presumed to be valid. At step 222, when the report has been processed, the client 20a queries the server for the current value of any datum that is needed and not resident in cache. At step 224, when the client's work is completed, the client 20a may be powered down to the off-line state.
The invalidation reports produced by Broadcasting Addresses (as shown in FIGS. 3A and 3B) do not include any timestamp information for the individual items listed in the report. In between reports, clients 20a-20f that have been continuously on-line assume that any data in cache that are not listed in the most recently received report are still valid. If any addresses are listed in a report, the clients 20a-20f assume that the data stored at the addresses listed were all updated immediately after the last previous report. This may cause a client 20a to misdiagnose a datum as invalid, increasing the query rate.
For example, consider the case in which the following events occur in order: (1) a server 10a broadcasts a report at time TO and updates a datum at time T1; (2) the client 20a returns to an on-line state and queries the server for the same datum at time T2; and (3) the server responds to the query at time T3 and issues the next invalidation report at time T4. Even though the client 20a receives the updated value of the datum at T3, upon receipt of the invalidation report at T4, the client assumes that the datum was updated immediately before T4. The client incorrectly diagnoses the copy of the datum received at T3 as invalid.
The situation described above seldom occurs when the clients 20a-20f are on-line nearly all of the time. Furthermore, the first exemplary method, Broadcasting Addresses, has the advantage that the invalidation report may be relatively small, because it only requires an address for each datum. Thus, Broadcasting Addresses may be preferable for continuous and near-continuous client operation.
The inventors have determined that the throughput for the first exemplary method, in terms of queries responded to by the server per unit of time, may be approximated by equations (1) and (2). ##EQU1## where: T=Throughput in responses per second
L=Period between invalidation reports
W=Bandwidth of server--client link
c=Expected number of updates per period equals n(1-e-μL)
bc =Bytes added to report per updated datum, equal to log(n)
n=number of data in server
bq =Bytes per query
ba =Bytes per answer to query
hat =Hit ratio
λ=queries per second
qo =probability of being on line and having no queries in an interval of length L,
where
q.sub.o =(1-s)e.sup.-λL
s=probability of being disconnected during an interval of length L
po =probability of no queries during an interval of length L=s+qo
uo =probability of no updates during an interval of length L=e-μL
μ=changes per datum per second
The inventors have determined that the second exemplary embodiment, hereinafter referred to as "Broadcasting Timestamps" may provide better throughput for query intensive environments in which queries are several (e.g., seven or more) orders of magnitude more frequent than updates, and the client processors 20a-20f are on-line a substantial fraction of the time (but not substantially all of the time). This exemplary embodiment is shown in FIGS. 4A and 4B. In this embodiment, both the servers 10a-10d and the clients 20a-20f store timestamps which identify the time at which each respective datum was last updated, as explained in detail below.
FIG. 4A is a flow chart diagram of the method of Broadcasting Timestamps. The server 10a stores a respective timestamp for each respective datum that is included in the common data shared with the other servers 10b-10d and the clients 20a-20f. Each timestamp identifies the time at which the respective datum was most recently updated. At step 150, the server 10a repeats step 152 for each datum. At step 152, the server 10a checks the timestamp of a datum to determine whether the datum was updated within the predetermined time window preceding the execution of step 152. If the datum was updated within the window, then at step 156 the address of the datum and the timestamp of the datum are added to the invalidation report currently being prepared. After steps 152 and 156 (if applicable) are repeated for each datum, at step 154 the server 10a sets a report timestamp in the invalidation report to the current time and broadcasts the report to all clients 20a within its respective cell 12a.
FIG. 4B is a flow chart diagram of the steps executed by the clients 20a-20f to process the invalidation reports produced by the process of FIG. 4A. Step 158 begins the process with the client 20a on-line. The client 20a may have been operating continuously prior to this time, or the client 20a may have just returned to the on-line state. At step 160, the next invalidation report broadcast by the server 10a is received.
Steps 162-166 and 172-174 are repeated for each datum in the cache 22 of client 20a, if applicable. At step 164, the client 20a determines whether the address of the datum is listed in the invalidation report. If so, then at step 166, the datum is marked invalid in the cache 22. If the datum is not listed in the report, then at step 172, the respective timestamp stored in cache and associated with the address of the datum is checked to determine whether the timestamp (i.e., the time that a report was last received by the client) was within the window of time immediately preceding the report. If not, then the client has not processed any reports within the window (e.g., because the client was off-line, because the server failed to issue a report, or because of a communications error), so the datum is presumed to be invalid. In this case, at step 166, the datum is marked invalid in the cache 22.
If at step 172, the timestamp of the datum is within the window preceding the timestamp of the report, then the datum is presumed to be valid, because the server 10a includes in the report the timestamps of all updates that occurred within the window. In this case, at step 174, the timestamp of the datum is changed to the timestamp of the report.
When the above steps have been executed for each datum in the cache, then at step 168 the client 20a queries the server for the current values of any data needed by the client 20a and not resident in the cache 22. When the queries are completed, at step 170 the client 20a may be turned off.
The provision of a window serves several functions. By limiting the earliest time for which the server must include updates in the invalidation reports, the report length is shortened, so that less bandwidth is used in transmitting the reports. A larger fraction of the bandwidth is then available for responding to queries. The size of the queue within the server 10a that maintains the addresses and timestamps of all updated data is also shortened.
The inventors have determined that the throughput for the second exemplary method, in terms of queries responded to by the server per unit time, may be approximated by equations (3) and (4). ##EQU2## where: T=Throughput in responses per second
L=Period between invalidation reports
W=Bandwidth of server-client link
ω=Window size in seconds equal to kL where k is an integer
n.sub.ω =Expected number of updates per window equals n(1-e-μω)
bT =Bytes per timestamp
n=number of data in server
bq =Bytes per query
ba =Bytes per answer to query
hts =Hit ratio using time stamps
μ=changes per datum per second
s=probability of being disconnected during an interval of length L
Po =probability of no queries during an interval of length L=s+qo
uo =probability of no updates during an interval of length L=e-μL
The method of Broadcasting Timestamps may be employed generally without regard to the content or type of data stored in the servers 10a-10d and clients 20a-20f. This is advantageous for systems that share many different databases including respectively different types of data among the processors. In some environments, where only a limited number of data types are present, it may be advantageous to tailor the invalidation reports to the specific type of data being handled. If the invalidation reports are tailored to particular types of data, then the invalidation reports may be compressed.
An example of the use of data compression for Broadcasting Timestamps is in the retail store environment described above, in which the client processors store the prices of a subset of the goods stocked in the store. The goods may be assigned to a predefined set of categories (e.g., meat, canned goods, cleaning products, dairy products, etc.). The invalidation reports may include flags that are set to indicate that the prices of all items in a category (e.g., all meat items) were updated at a given time. It would not be necessary to broadcast the respective timestamp and address of each individual item. Upon receipt of an invalidation report in which a flag is set, the client 20a invalidates all of the data within the category indicated by that flag. This is advantageous in environments in which most or all of the items in a category are likely to be updated at the same time.
Use of data compression reduces the size of the invalidation reports. If the server is either broadcasting invalidation reports or responses to queries most of the time, shortening the reports allows the server to respond to more queries. It is understood by one skilled in the art that a variety of data compression techniques may be used, depending on the nature of the data shared among the processors in the system.
The inventors have determined that a third exemplary method according to the invention may provide better throughput when the clients 20a-20f are off-line most of the time. The third method may also provide better throughput when the frequency of queries is a few orders of magnitude greater than the frequency of updates. The third method, hereinafter referred to as "Broadcasting Signatures" involves a comparison between the a first set of signatures based on the contents of the server 10a and a second set of signatures based on the contents of the cache 22 of client 20a. This method is shown in FIGS. 5A and 5B. The invalidation report provides information about the current state of the server 10a.
FIG. 5A is a flow chart diagram showing the process performed by the server to generate the invalidation reports. Signatures are checksums computed over the values of data in the server. At steps 250 and 252, the data in the server are divided into pages, and a signature is computed for each page, forming a complete set of individual page signatures. At steps 254-258, the combined signatures are formed. At step 256, a subset of the individual signatures are combined to form a combined signature by forming the Exclusive OR (XOR) of the subset of individual signatures. At step 258, the combined signature is added to the report. By repeating steps 256 and 258, a plurality of different subsets (each including the individual signatures from a respectively different subset of the pages) are thus combined to form a plurality of combined signatures. At step 260, the report is broadcast to the clients 20a-20f.
FIG. 5B is a flow chart diagram of the signature processing performed by the clients 20a-20f. At step 280, the client 20a receives the invalidation report from the server 10a. The clients 20a-20f typically do not include copies of all of the server's data in cache 22. Only some of the subsets of the pages in the server 10a are copied in each cache. Steps 282-290 are repeated for each respective subset of the server pages stored in the cache 22 (each subset corresponding to a respective combined signature). At step 284, the client 20a performs a process similar to steps 250 to 256 (performed by the server 10a, as shown in FIG. 5A). The client 20a computes an individual signature for each page in the cache 22, and forms the combined signatures (as the Exclusive OR of a subset of the individual signatures). The client 20a only computes combined signatures for the subsets of the data that are of used by the client 20a.
The composition of the combined signatures broadcast in the invalidation reports by the server is statically defined, so that each client recognizes the format of the reports, and each client is able to identify those combined signatures that are relevant to the pages copied in its cache 22. At step 286, the client 20a compares its combined signature to the combined signature received in the invalidation report. A publication by D. Barbara and R. J. Lipton, "A Class of Randomized Strategies for Low-Cost Comparison of File Copies" IEEE Transactions on Parallel and Distributed Systems, Vol. 2, No. 2, pages 160-170, 1991, is hereby incorporated by reference for its teachings on techniques for generating combined signatures for data comparisons.
If, at step 286, a combined signature in a report is equal to the respective combined signature in the cache 22, the probability that one or more items covered by the combined signature are different from one another (i.e., the copy of the data in cache is invalid) but have the same signature is approximately 2-s, where s is the number of bits in the combined signature. Thus, there is a known probability that an item may not be invalidated in the cache 22 in response to the invalidation report. This probability may be limited to a desired value by selecting an appropriate number of bits for the combined signature.
If, at step 286, a combined signature in the report is different from the corresponding combined signature in the cache 22, then one or more of the data covered by that combined signature have been updated in the server 10a. In order to detect which of the data in cache are actually invalid, several respectively different combined signatures (representing respectively different subsets of the data in the server) are included in the report. Each page in the cache may be included in several different subsets of the pages in the server, and each page is thus covered by several combined signatures. Steps 288 and 290 are repeated for each datum in each page represented by the non-matching combined signature. At step 290, a counter for each datum represented by the combined signature is incremented.
When steps 282 to 290 have been repeated for each subset of the pages in cache, then steps 292 to 296 are repeated for each datum in cache. The number of non-matching combined signatures associated with each respective datum is determined by the value of the respective counter for that datum. At step 294, if the number of non-matching signatures for a datum exceeds a predetermined threshold level, then at step 296, the datum is determined to be invalid and is marked invalid. When steps 292-296 have been repeated for each datum in cache, at step 298 the client 20a may query the server 10a for any data that are required and not resident in cache 22.
As described above, the respective counters for each respective datum in a page of the cache all have the same value, even though as few as one datum may actually have been updated. This means that an update to one datum causes all other data in the same page as the updated datum to be invalidated in the cache 22 of the client 20a. The page size may be made arbitrarily small (even a single datum per page), to minimize the number of data that are unnecessarily invalidated in this manner. The tradeoff is that, as the page size becomes smaller, the number of pages becomes greater.
The state based method of Broadcasting Signatures is different from Broadcasting Addresses (FIGS. 3A and 3B) and Broadcasting Timestamps (FIGS. 4A and 4B), both of which are history based (i.e., transactional). Because each invalidation report containing signatures provides information regarding all data in the server 10a, the client 20a can determine whether each datum in its cache 22 is invalid, even if the client 20a has returned to an on-line state after missing several invalidation reports.
By Broadcasting Signatures, the client 20a need not invalidate all of the items in cache 22 if the off-line time exceeds a predetermined "window", as in Broadcasting Timestamps. (In this sense, Broadcasting Signatures functions as if a window of infinite duration is used). Thus, Broadcasting Signatures may provide better throughput in an environment in which the clients are off-line a substantial fraction of the time. Furthermore, if the ratio of queries to updates is not very high (e.g., 1,000 to 1), the average report size for Broadcasting Timestamps becomes larger as more items are invalidated, reducing throughput by that method. This factor makes Broadcasting Signatures advantageous when the frequency of queries is not several orders of magnitude greater than the frequency of updates.
In the exemplary embodiment, there are m randomly chosen (a priori, before any exchange of signatures occurs) sets of data. The members of each set are randomly chosen so that a datum has the probability 1/(1+f) of being included in each set (where f is the number of different pages).
The inventors have determined that the throughput for Broadcasting Signatures according the third exemplary embodiment of the invention, in terms of queries responded to by the server per unit time, may be characterized by equations (5) to (8). ##EQU3## where: T=Throughput in responses per second
L=Period between invalidation reports
W=Bandwidth of server-client link
s=Number of bits in combined signature
f=Number of different pages
δ=Threshold maximum probability that a valid datum in cache is falsely diagnosed
n=number of data in server
bq =Bytes per query
ba =Bytes per answer to query
hsig =Hit ratio using time stamps
m=Number of combined signatures in the invalidation report
p(Ns)=Probability of a valid datum being represented by a non-matching signature
μ=changes per datum per second
Po =probability of no queries during an interval of length L=s+qo
uo =probability of no updates during an interval of length L=e-μL
The method of Broadcasting Signatures is more effective when there are relatively few differences between the data in the server 10a and the data in the client 20a. This condition is present if the product of the average time a client is taken off-line multiplied by the frequency of updates is not very large.
If however, there are several updated data distributed among many different pages, these updated data may affect a large fraction of the combined signatures. This is because of the way each page is randomly assigned to several subsets for forming the respective combined signatures for each subset. In this case, with data differences in a large number of pages that are reflected in an even larger number of combined signatures, many data in the client's cache may be invalidated.
The method of Broadcasting Signatures may provide better throughput than Broadcasting Addresses or Broadcasting Timestamps in the mobile wireless computing environment, because limited battery capacity and the costs of maintaining a lengthy session over a cellular communications link make it advantageous to keep palmtop computers off-line when possible. Furthermore, Broadcasting Signatures may provide better throughput than Broadcasting Timestamps in situations in which the query rate only exceeds the update rate by a few orders of magnitude.
It is understood by one skilled in the art that many variations of the embodiments described herein are contemplated. While the invention has been described in terms of exemplary embodiments, it is contemplated that it may be practiced as outlined above with modifications within the spirit and scope of the appended claims.

Claims (10)

What is claimed:
1. A method of maintaining coherency between a server processor that stores a plurality of data value and a client processor that has a cache memory for storing a subset of the plurality of data values, comprising the steps of:
(a) broadcasting periodic invalidation reports from the server processor to the client processor, each respective invalidation report including information used for identifying any of the plurality of data values that have been updated within a period of time before the server processor broadcasts the respective invalidation report, the information including a plurality of combined signatures that are based on all of the data values stored in the server processor;
(b) determining, based on the invalidation reports, whether a selected data value in the cache memory of the client processor has been updated in the server processor since the selected data value was stored in the cache memory, the determining performed by the client processor and including:
(1) forming a set of combined signatures that are based on all of the data values in the cache memory of the client processor,
(2) comparing each combined signature in the set of combined signatures formed by the client to a respective combined signature in the invalidation report, to determine a measure of the probability that the selected data value has been updated in the server processor since the data value was stored in the cache memory, and
(3) determining whether the measure of probability exceeds a predetermined threshold value; and
(c) invalidating the selected data value in the cache memory of the client processor, if the client processor determines that the selected data value has been updated in the server processor.
2. A method according to claim 1, wherein the period of time is greater than the period between the broadcasting of successive invalidation reports.
3. A method according to claim 1, further comprising the steps of:
(d) taking the client processor off-line;
(e) returning the client processor to an on-line state; and
(f) invalidating any of the data in the cache memory that the client processor determines to be invalid based on the next invalidation report broadcast by the server processor after step (e).
4. A method according to claim 1, further comprising the steps of:
(d) taking the client processor off-line;
(e) moving the client processor to a location at which the client processor communicates with a further server processor, the further processor communicating with the server processor for receiving a copy of the plurality of data values from the server processor;
(f) returning the client processor to an on-line state;
(g) broadcasting an invalidation report from the further server processor;
(h) invalidating any of the data values in the cache memory that the client processor determines to be invalid based on the invalidation report broadcast by the further server processor.
5. A system for maintaining coherency between a server processor that stores a plurality of data values, a further server processor in communication with the server processor for storing a copy of data values provided by the server processor, and a client processor that has a cache memory for storing a subset of the plurality of data values, comprising:
means within the server processor for forming and broadcasting periodic invalidation reports, each respective invalidation report including information identifying any of the plurality of data values that have been updated within a predetermined period of time before the server processor broadcasts the respective invalidation report; and
means within the further server processor for broadcasting the invalidation report to the client processor,
wherein the client processor includes:
means for taking the client processor to an off-line state and for returning the client processor to an on-line state;
means for establishing a communication link between the further server processor and the client processor to receive the invalidation report broadcast by the further processor when the client processor returns to the on-line state;
means within the client processor for determining, based on the invalidation reports, whether a selected data value in the cache memory of the client processor has been updated in the server processor since the selected data value was stored in the cache memory; and
means responsive to the determining means for invalidating the selected data value in the cache memory, if the selected data value has been updated in the server processor, wherein the invalidating means of the client processor invalidates any of the data values in the cache memory that the determining means of the client processor determines to be invalid based on the invalidation report broadcast by the further server processor.
6. A system according to claim 5, wherein the server processor is a fixed location mobile unit support station.
7. A system according to claim 6, wherein the client processor is a palmtop computer.
8. A system according to claim 5, wherein:
the server processor and the further server processor are fixed location mobile unit support stations, each broadcasting invalidation reports to the client processor via a wireless medium within a respective cell; and
the client processor is a palmtop computer that is portable between the cells.
9. A system according to claim 8, further comprising a fixed communications network to which the server processor and the further server processor are coupled.
10. A system according to claim 9, wherein the fixed communications network is a wired network.
US08/163,335 1993-12-06 1993-12-06 System for maintaining data coherency in cache memory by periodically broadcasting invalidation reports from server to client Expired - Lifetime US5581704A (en)

Priority Applications (3)

Application Number Priority Date Filing Date Title
US08/163,335 US5581704A (en) 1993-12-06 1993-12-06 System for maintaining data coherency in cache memory by periodically broadcasting invalidation reports from server to client
JP6302541A JPH07248968A (en) 1993-12-06 1994-12-06 Stateless cache maintaining device/method making broadcast invalidation
US08/687,689 US5706435A (en) 1993-12-06 1996-07-26 System for maintaining data coherency in cache memory by periodically broadcasting a single invalidation report from server to clients

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
US08/163,335 US5581704A (en) 1993-12-06 1993-12-06 System for maintaining data coherency in cache memory by periodically broadcasting invalidation reports from server to client

Related Child Applications (1)

Application Number Title Priority Date Filing Date
US08/687,689 Continuation US5706435A (en) 1993-12-06 1996-07-26 System for maintaining data coherency in cache memory by periodically broadcasting a single invalidation report from server to clients

Publications (1)

Publication Number Publication Date
US5581704A true US5581704A (en) 1996-12-03

Family

ID=22589579

Family Applications (2)

Application Number Title Priority Date Filing Date
US08/163,335 Expired - Lifetime US5581704A (en) 1993-12-06 1993-12-06 System for maintaining data coherency in cache memory by periodically broadcasting invalidation reports from server to client
US08/687,689 Expired - Lifetime US5706435A (en) 1993-12-06 1996-07-26 System for maintaining data coherency in cache memory by periodically broadcasting a single invalidation report from server to clients

Family Applications After (1)

Application Number Title Priority Date Filing Date
US08/687,689 Expired - Lifetime US5706435A (en) 1993-12-06 1996-07-26 System for maintaining data coherency in cache memory by periodically broadcasting a single invalidation report from server to clients

Country Status (2)

Country Link
US (2) US5581704A (en)
JP (1) JPH07248968A (en)

Cited By (48)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5689696A (en) * 1995-12-28 1997-11-18 Lucent Technologies Inc. Method for maintaining information in a database used to generate high biased histograms using a probability function, counter and threshold values
US5706435A (en) * 1993-12-06 1998-01-06 Panasonic Technologies, Inc. System for maintaining data coherency in cache memory by periodically broadcasting a single invalidation report from server to clients
US5737536A (en) * 1993-02-19 1998-04-07 Borland International, Inc. System and methods for optimized access in a multi-user environment
WO1998026528A2 (en) * 1996-12-09 1998-06-18 Scientific-Atlanta, Inc. Using a hierarchical file system for indexing data broadcast to a client from a network of servers
US5802305A (en) * 1996-05-17 1998-09-01 Microsoft Corporation System for remotely waking a sleeping computer in power down state by comparing incoming packet to the list of packets storing on network interface card
US5842216A (en) * 1996-05-03 1998-11-24 Mitsubishi Electric Information Technology Center America, Inc. System for sending small positive data notification messages over a network to indicate that a recipient node should obtain a particular version of a particular data item
US5860153A (en) * 1995-11-22 1999-01-12 Sun Microsystems, Inc. Memory efficient directory coherency maintenance
US5864854A (en) * 1996-01-05 1999-01-26 Lsi Logic Corporation System and method for maintaining a shared cache look-up table
US5884324A (en) * 1996-07-23 1999-03-16 International Business Machines Corporation Agent for replicating data based on a client defined replication period
US5907678A (en) * 1997-05-07 1999-05-25 International Business Machines Corporation Client/server system in which protocol caches for multiple sessions are selectively copied into a common checkpoint cache upon receiving a checkpoint request
US5961602A (en) * 1997-02-10 1999-10-05 International Business Machines Corporation Method for optimizing off-peak caching of web data
US6006206A (en) * 1997-09-08 1999-12-21 Reuters Limited Data health monitor for financial information communications networks
US6061714A (en) * 1997-05-07 2000-05-09 International Business Machines Corporation Persistent cache synchronization and start up system
US6101528A (en) * 1996-03-27 2000-08-08 Intel Corporation Method and apparatus for discovering server applications by a client application in a network of computer systems
US6112231A (en) * 1996-10-18 2000-08-29 At&T Corp. Server to cache protocol for improved web performance
US6122637A (en) * 1995-11-30 2000-09-19 Yohe; Thomas Patrick Apparatus and method for increased data access in an object oriented caching system
US6279041B1 (en) 1998-11-13 2001-08-21 International Business Machines Corporation Methods, systems and computer program products for differencing data communications using a message queue
US6427172B1 (en) * 1999-07-20 2002-07-30 Cyberstar, L.P. Method and apparatus for internet cache content delivery via a data distribution system
US6430596B1 (en) 1996-03-27 2002-08-06 Intel Corporation Managing networked directory services with auto field population
US6578113B2 (en) * 1997-06-02 2003-06-10 At&T Corp. Method for cache validation for proxy caches
US20030110218A1 (en) * 2001-12-12 2003-06-12 Stanley Randy P. Local caching of images for on-line conferencing programs
US6584321B1 (en) 1999-05-07 2003-06-24 At&T Wireless Services, Inc. Method and apparatus for wireless data services over a selected bearer service
US6584548B1 (en) * 1999-07-22 2003-06-24 International Business Machines Corporation Method and apparatus for invalidating data in a cache
EP1331760A1 (en) * 2000-10-30 2003-07-30 Sharp Kabushiki Kaisha Node structure information management method and radio network system
US20030163646A1 (en) * 2002-02-27 2003-08-28 O'neil Joseph Thomas Pre-loading content to caches for information appliances
US20030204678A1 (en) * 2002-04-27 2003-10-30 Lg Electronics Inc. System and method for maintaining cache consistency in a wireless communication system
US20030217081A1 (en) * 2002-05-14 2003-11-20 Ken White System and method of maintaining functional client side data cache coherence
US20040085980A1 (en) * 2002-10-31 2004-05-06 Lg Electronics Inc. System and method for maintaining transaction cache consistency in mobile computing environment
US20040111410A1 (en) * 2002-10-14 2004-06-10 Burgoon David Alford Information reservoir
US20040215757A1 (en) * 2003-04-11 2004-10-28 Hewlett-Packard Development Company, L.P. Delivery context aware activity on networks: devices, software, and methods
US20050138232A1 (en) * 2003-12-22 2005-06-23 Matsushita Electric Industrial Co., Ltd. Memory system control method
US20050278346A1 (en) * 2004-06-10 2005-12-15 Sybase, Inc. System Providing Methodology for Replication Subscription Resolution
US6990526B1 (en) * 2000-05-22 2006-01-24 Pointred Technologies, Inc. Method and apparatus for web caching
US7085553B1 (en) * 1995-08-31 2006-08-01 Oracle International Corporation Data communication protocols for a mobile-based client-server system over a wireless network
CN1294512C (en) * 1997-03-26 2007-01-10 国际商业机器公司 Method and apparatus for pre high speed buffer store data on service device
US20080307316A1 (en) * 2007-06-07 2008-12-11 Concert Technology Corporation System and method for assigning user preference settings to fields in a category, particularly a media category
CN100444605C (en) * 2003-05-31 2008-12-17 乐金电子(中国)研究开发中心有限公司 Cache consistency maintaining method under wireless internet environment
US20090055467A1 (en) * 2007-05-29 2009-02-26 Concert Technology Corporation System and method for increasing data availability on a mobile device based on operating mode
US20090077499A1 (en) * 2007-04-04 2009-03-19 Concert Technology Corporation System and method for assigning user preference settings for a category, and in particular a media category
US20090138505A1 (en) * 2007-11-26 2009-05-28 Concert Technology Corporation Intelligent default weighting process for criteria utilized to score media content items
US20090138457A1 (en) * 2007-11-26 2009-05-28 Concert Technology Corporation Grouping and weighting media categories with time periods
US20090158146A1 (en) * 2007-12-13 2009-06-18 Concert Technology Corporation Resizing tag representations or tag group representations to control relative importance
US20100042478A1 (en) * 1994-05-31 2010-02-18 Twintech E.U., Limited Liability Company Providing Services From A Remote Computer System To A User Station Over A Communications Network
US7702752B2 (en) 1996-02-21 2010-04-20 Disney Enterprises, Inc. Method and apparatus for redirection of server external hyper-link references
US20130268930A1 (en) * 2012-04-06 2013-10-10 Arm Limited Performance isolation within data processing systems supporting distributed maintenance operations
USRE44685E1 (en) 1994-04-28 2013-12-31 Opentv, Inc. Apparatus for transmitting and receiving executable applications as for a multimedia system, and method and system to order an item using a distributed computing system
CN108293065A (en) * 2015-11-19 2018-07-17 微软技术许可有限责任公司 Enhancement mode control to the data of cache
US20190325052A1 (en) * 2018-04-20 2019-10-24 Oracle International Corporation Consistent client-side caching for fine grained invalidations

Families Citing this family (112)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5793973A (en) * 1995-07-14 1998-08-11 Microsoft Corporation Method and system for opportunistic broadcasting of data
US6438614B2 (en) 1998-02-26 2002-08-20 Sun Microsystems, Inc. Polymorphic token based control
US6560656B1 (en) 1998-02-26 2003-05-06 Sun Microsystems, Inc. Apparatus and method for providing downloadable code for use in communicating with a device in a distributed system
US6463446B1 (en) 1998-02-26 2002-10-08 Sun Microsystems, Inc. Method and apparatus for transporting behavior in an event-based distributed system
US6237024B1 (en) 1998-03-20 2001-05-22 Sun Microsystem, Inc. Method and apparatus for the suspension and continuation of remote processes
US6578044B1 (en) 1997-11-17 2003-06-10 Sun Microsystems, Inc. Method and system for typesafe attribute matching
US6708171B1 (en) 1996-04-23 2004-03-16 Sun Microsystems, Inc. Network proxy
US6226746B1 (en) 1998-03-20 2001-05-01 Sun Microsystems, Inc. Stack-based system and method to combine security requirements of methods
US6272559B1 (en) 1997-10-15 2001-08-07 Sun Microsystems, Inc. Deferred reconstruction of objects and remote loading for event notification in a distributed system
US6466947B2 (en) 1998-03-20 2002-10-15 Sun Microsystems, Inc. Apparatus and method for dynamically verifying information in a distributed system
US6393497B1 (en) 1998-03-20 2002-05-21 Sun Microsystems, Inc. Downloadable smart proxies for performing processing associated with a remote procedure call in a distributed system
US6247026B1 (en) * 1996-10-11 2001-06-12 Sun Microsystems, Inc. Method, apparatus, and product for leasing of delegation certificates in a distributed system
US6598094B1 (en) 1998-03-20 2003-07-22 Sun Microsystems, Inc. Method and apparatus for determining status of remote objects in a distributed system
US6446070B1 (en) 1998-02-26 2002-09-03 Sun Microsystems, Inc. Method and apparatus for dynamic distributed computing over a network
US6138238A (en) 1997-12-11 2000-10-24 Sun Microsystems, Inc. Stack-based access control using code and executor identifiers
US6487607B1 (en) 1998-02-26 2002-11-26 Sun Microsystems, Inc. Methods and apparatus for remote method invocation
US6421704B1 (en) 1998-03-20 2002-07-16 Sun Microsystems, Inc. Method, apparatus, and product for leasing of group membership in a distributed system
US6938263B2 (en) 1996-04-23 2005-08-30 Sun Microsystems, Inc. System and method for facilitating dynamic loading of “stub” information to enable a program operating in one address space to invoke processing of a remote method or procedure in another address space
US6182083B1 (en) 1997-11-17 2001-01-30 Sun Microsystems, Inc. Method and system for multi-entry and multi-template matching in a database
US6185611B1 (en) 1998-03-20 2001-02-06 Sun Microsystem, Inc. Dynamic lookup service in a distributed system
US6282652B1 (en) 1998-02-26 2001-08-28 Sun Microsystems, Inc. System for separately designating security requirements for methods invoked on a computer
US6832223B1 (en) 1996-04-23 2004-12-14 Sun Microsystems, Inc. Method and system for facilitating access to a lookup service
JPH1070530A (en) * 1996-08-28 1998-03-10 Oki Electric Ind Co Ltd Information transfer system, information storage providing device and information device to be provided
US6728737B2 (en) 1996-10-11 2004-04-27 Sun Microsystems, Inc. Method and system for leasing storage
US5832529A (en) 1996-10-11 1998-11-03 Sun Microsystems, Inc. Methods, apparatus, and product for distributed garbage collection
US6237009B1 (en) 1996-10-11 2001-05-22 Sun Microsystems, Inc. Lease renewal service
AU5102298A (en) * 1996-11-05 1998-05-29 Microage Computer Centers, Inc. External cache for on-line resources
US5948066A (en) * 1997-03-13 1999-09-07 Motorola, Inc. System and method for delivery of information over narrow-band communications links
US6021470A (en) * 1997-03-17 2000-02-01 Oracle Corporation Method and apparatus for selective data caching implemented with noncacheable and cacheable data for improved cache performance in a computer networking system
US6356948B1 (en) * 1997-03-28 2002-03-12 Aspect Communications Corp Method and apparatus for managing data
US6957427B1 (en) 1997-10-15 2005-10-18 Sun Microsystems, Inc. Remote object activation in a distributed system
US6253256B1 (en) 1997-10-15 2001-06-26 Sun Microsystems, Inc. Deferred reconstruction of objects and remote loading in a distributed system
US6292835B1 (en) * 1997-11-26 2001-09-18 International Business Machines Corporation Network bandwidth and object obsolescence sensitive scheduling method and apparatus for objects distributed broadcasting
CN1298514A (en) 1998-02-26 2001-06-06 太阳微系统公司 Method and system for deterministic hashes to identify remote method
US6604127B2 (en) 1998-03-20 2003-08-05 Brian T. Murphy Dynamic lookup service in distributed system
US6757681B1 (en) 1998-06-02 2004-06-29 International Business Machines Corporation Method and system for providing performance data
US6856605B1 (en) 1998-09-01 2005-02-15 Metrocall, Inc. System and method for controlling an end-user application among a plurality of communication units in a wireless messaging network
US6230165B1 (en) * 1998-10-16 2001-05-08 Cerulean Method for encoding and transporting database objects over bandwidth constrained networks
US7058597B1 (en) 1998-12-04 2006-06-06 Digital River, Inc. Apparatus and method for adaptive fraud screening for electronic commerce transactions
US20030195974A1 (en) * 1998-12-04 2003-10-16 Ronning Joel A. Apparatus and method for scheduling of search for updates or downloads of a file
US7617124B1 (en) 1998-12-04 2009-11-10 Digital River, Inc. Apparatus and method for secure downloading of files
US6266678B1 (en) * 1998-12-31 2001-07-24 Computer Associates Think, Inc. System and method for dynamically viewing contents of a data file
US6219676B1 (en) 1999-03-29 2001-04-17 Novell, Inc. Methodology for cache coherency of web server data
US6901518B1 (en) 1999-04-08 2005-05-31 Sun Microsystems, Inc. Method and system for establishing trust in downloaded proxy code
US7062765B1 (en) 1999-05-25 2006-06-13 Realnetworks, Inc. System and method for updating information via a network
US6996627B1 (en) 1999-05-25 2006-02-07 Realnetworks, Inc. System and method for providing update information
US6877163B1 (en) 1999-06-14 2005-04-05 Sun Microsystems, Inc. Method and system for dynamic proxy classes
US6845393B1 (en) 1999-06-14 2005-01-18 Sun Microsystems, Inc. Lookup discovery service in a distributed system having a plurality of lookup services each with associated characteristics and services
AU7095900A (en) * 1999-09-01 2001-03-26 Weblink Wireless, Inc. Controlling an end-user application among a plurality of communication units
US7010573B1 (en) 2000-05-09 2006-03-07 Sun Microsystems, Inc. Message gates using a shared transport in a distributed computing environment
US8001232B1 (en) 2000-05-09 2011-08-16 Oracle America, Inc. Event message endpoints in a distributed computing environment
US8135796B1 (en) 2000-05-09 2012-03-13 Oracle America, Inc. Mechanism and apparatus for accessing and addressing services in a distributed computing environment
US6789077B1 (en) 2000-05-09 2004-09-07 Sun Microsystems, Inc. Mechanism and apparatus for web-based searching of URI-addressable repositories in a distributed computing environment
US6792466B1 (en) 2000-05-09 2004-09-14 Sun Microsystems, Inc. Trusted construction of message endpoints in a distributed computing environment
US7080078B1 (en) 2000-05-09 2006-07-18 Sun Microsystems, Inc. Mechanism and apparatus for URI-addressable repositories of service advertisements and other content in a distributed computing environment
US7016966B1 (en) 2000-05-09 2006-03-21 Sun Microsystems, Inc. Generating results gates in a distributed computing environment
US6789126B1 (en) 2000-05-09 2004-09-07 Sun Microsystems, Inc. Addressing message gates in a distributed computing environment
US7200848B1 (en) 2000-05-09 2007-04-03 Sun Microsystems, Inc. Migrating processes using data representation language representations of the processes in a distributed computing environment
US7065574B1 (en) 2000-05-09 2006-06-20 Sun Microsystems, Inc. Messaging system using pairs of message gates in a distributed computing environment
US6643650B1 (en) 2000-05-09 2003-11-04 Sun Microsystems, Inc. Mechanism and apparatus for using messages to look up documents stored in spaces in a distributed computing environment
US7243356B1 (en) 2000-05-09 2007-07-10 Sun Microsystems, Inc. Remote method invocation with secure messaging in a distributed computing environment
US6918084B1 (en) 2000-05-09 2005-07-12 Sun Microsystems, Inc. Spawning new repository spaces using information provided in advertisement schema messages
US7577834B1 (en) 2000-05-09 2009-08-18 Sun Microsystems, Inc. Message authentication using message gates in a distributed computing environment
US7370091B1 (en) 2000-05-09 2008-05-06 Sun Microsystems, Inc. Method and apparatus for obtaining space advertisements
US7716492B1 (en) 2000-05-09 2010-05-11 Oracle America, Inc. Method and apparatus to obtain service capability credentials
US6970869B1 (en) 2000-05-09 2005-11-29 Sun Microsystems, Inc. Method and apparatus to discover services and negotiate capabilities
US7395333B1 (en) 2000-05-09 2008-07-01 Sun Microsystems, Inc. Method and apparatus to obtain negotiated service advertisement
US6973493B1 (en) 2000-05-09 2005-12-06 Sun Microsystems, Inc. Mechanism and apparatus for security of newly spawned repository spaces in a distributed computing environment
US6850979B1 (en) 2000-05-09 2005-02-01 Sun Microsystems, Inc. Message gates in a distributed computing environment
US6950875B1 (en) 2000-05-09 2005-09-27 Sun Microsystems, Inc. Message conductors in a distributed computing environment
US6898618B1 (en) 2000-05-09 2005-05-24 Sun Microsystems, Inc. Client-specified display services in a distributed computing environment
US6868447B1 (en) 2000-05-09 2005-03-15 Sun Microsystems, Inc. Mechanism and apparatus for returning results of services in a distributed computing environment
US6917976B1 (en) 2000-05-09 2005-07-12 Sun Microsystems, Inc. Message-based leasing of resources in a distributed computing environment
US7072967B1 (en) 2000-05-09 2006-07-04 Sun Microsystems, Inc. Efficient construction of message endpoints
US8082491B1 (en) 2000-05-09 2011-12-20 Oracle America, Inc. Dynamic displays in a distributed computing environment
US6862594B1 (en) 2000-05-09 2005-03-01 Sun Microsystems, Inc. Method and apparatus to discover services using flexible search criteria
US7188251B1 (en) 2000-05-09 2007-03-06 Sun Microsystems, Inc. System and method for secure message-based leasing of resources in a distributed computing environment
US7260543B1 (en) 2000-05-09 2007-08-21 Sun Microsystems, Inc. Automatic lease renewal with message gates in a distributed computing environment
US6865657B1 (en) 2000-06-02 2005-03-08 Sun Microsystems, Inc. Garbage collector for a virtual heap
US6941410B1 (en) 2000-06-02 2005-09-06 Sun Microsystems, Inc. Virtual heap for a virtual machine
US6763440B1 (en) 2000-06-02 2004-07-13 Sun Microsystems, Inc. Garbage collection using nursery regions for new objects in a virtual heap
US6854115B1 (en) 2000-06-02 2005-02-08 Sun Microsystems, Inc. Process persistence in a virtual machine
US6760815B1 (en) 2000-06-02 2004-07-06 Sun Microsystems, Inc. Caching mechanism for a virtual heap
US6957237B1 (en) 2000-06-02 2005-10-18 Sun Microsystems, Inc. Database store for a virtual heap
US20020111992A1 (en) * 2000-12-18 2002-08-15 Copeland George P. JSP composition in a cache for web applications with dynamic content
US6877025B2 (en) * 2000-12-18 2005-04-05 International Business Machines Corp. Integrated JSP and command cache for web applications with dynamic content
US6807606B2 (en) 2000-12-18 2004-10-19 International Business Machines Corp. Distributed execution coordination for web caching with dynamic content
US7702800B2 (en) * 2000-12-18 2010-04-20 International Business Machines Corporation Detecting and handling affinity breaks in web applications
US6823360B2 (en) * 2000-12-18 2004-11-23 International Business Machines Corp. Cofetching in a command cache
US7296275B2 (en) 2001-01-04 2007-11-13 Sun Microsystems, Inc. Method and system for passing objects in a distributed system using serialization contexts
US20020174109A1 (en) * 2001-05-16 2002-11-21 Chandy Kanianthra Mani Event detection with concurrent data updates
US20030051029A1 (en) * 2001-09-07 2003-03-13 Reedy Dennis G. Dynamic provisioning of sevice components in a distributed system
US7756969B1 (en) 2001-09-07 2010-07-13 Oracle America, Inc. Dynamic provisioning of identification services in a distributed system
US7660887B2 (en) * 2001-09-07 2010-02-09 Sun Microsystems, Inc. Systems and methods for providing dynamic quality of service for a distributed system
US20040103199A1 (en) * 2002-11-22 2004-05-27 Anthony Chao Method and system for client browser update from a lite cache
AU2004207357A1 (en) * 2003-01-17 2004-08-12 Tacit Networks, Inc. Method and system for use of storage caching with a distributed file system
US11392588B2 (en) * 2003-09-04 2022-07-19 Oracle International Corporation Active queries filter extraction
US7792874B1 (en) 2004-01-30 2010-09-07 Oracle America, Inc. Dynamic provisioning for filtering and consolidating events
US7676453B2 (en) * 2004-04-22 2010-03-09 Oracle International Corporation Partial query caching
US20060155759A1 (en) * 2004-12-29 2006-07-13 Yahoo! Inc. Scalable cache layer for accessing blog content
KR100791628B1 (en) * 2006-06-09 2008-01-04 고려대학교 산학협력단 Method for active controlling cache in mobile network system, Recording medium and System thereof
US7571594B2 (en) * 2006-07-28 2009-08-11 Milliken & Company Composite yarn and process for producing the same
US8768961B2 (en) * 2007-03-09 2014-07-01 At&T Labs, Inc. System and method of processing database queries
US7734733B1 (en) 2007-06-15 2010-06-08 Packeteer, Inc. WAFS disconnected-mode read-write access
US8346966B1 (en) 2007-07-19 2013-01-01 Blue Coat Systems, Inc. Transparent file system access for wide area network file system acceleration
US9135284B1 (en) 2008-03-13 2015-09-15 Blue Coat Systems, Inc. Composite execution of rename operations in wide area file systems
US9442850B1 (en) 2008-03-25 2016-09-13 Blue Coat Systems, Inc. Efficient directory refresh operations in wide area file systems
US8706878B1 (en) 2008-08-21 2014-04-22 United Services Automobile Association Preferential loading in data centers
US20100057586A1 (en) * 2008-09-04 2010-03-04 China Software Venture Offer Reporting Apparatus and Method
US9213780B2 (en) * 2009-06-26 2015-12-15 Microsoft Technology Licensing Llc Cache and index refreshing strategies for variably dynamic items and accesses
US9223717B2 (en) * 2012-10-08 2015-12-29 Wisconsin Alumni Research Foundation Computer cache system providing multi-line invalidation messages
JP5991141B2 (en) * 2012-10-31 2016-09-14 日本電気株式会社 Data reading apparatus, data writing apparatus, distributed system, method, and program

Citations (18)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US3723976A (en) * 1972-01-20 1973-03-27 Ibm Memory system with logical and real addressing
US3771137A (en) * 1971-09-10 1973-11-06 Ibm Memory control in a multipurpose system utilizing a broadcast
US4984153A (en) * 1988-04-27 1991-01-08 Unisys Corporation Storage locking control for a plurality of processors which share a common storage unit
US5113514A (en) * 1989-08-22 1992-05-12 Prime Computer, Inc. System bus for multiprocessor computer system
US5121126A (en) * 1991-03-12 1992-06-09 Bell Atlantic Network Services Inc. Beacon enhanced telecommunications system and method
US5134697A (en) * 1987-11-16 1992-07-28 Prime Computer Remote memory-mapped display with interactivity determination
US5142550A (en) * 1989-06-29 1992-08-25 Symbol Technologies, Inc. Packet data communication system
US5146603A (en) * 1988-06-14 1992-09-08 International Computers Limited Copy-back cache system having a plurality of context tags and setting all the context tags to a predetermined value for flushing operation thereof
US5175851A (en) * 1989-05-15 1992-12-29 International Business Machines Corporation System and method for controlling client machine access to a portion of a file with a variable length
US5179675A (en) * 1988-09-30 1993-01-12 International Computers Limited Data processing system with cache memory addressable by virtual and physical address
US5185878A (en) * 1988-01-20 1993-02-09 Advanced Micro Device, Inc. Programmable cache memory as well as system incorporating same and method of operating programmable cache memory
US5197139A (en) * 1990-04-05 1993-03-23 International Business Machines Corporation Cache management for multi-processor systems utilizing bulk cross-invalidate
US5210848A (en) * 1989-02-22 1993-05-11 International Business Machines Corporation Multi-processor caches with large granularity exclusivity locking
US5212806A (en) * 1990-10-29 1993-05-18 International Business Machines Corporation Distributed control methods for management of migrating data stations in a wireless communications network
US5265235A (en) * 1990-11-30 1993-11-23 Xerox Corporation Consistency protocols for shared memory multiprocessors
US5355471A (en) * 1992-08-14 1994-10-11 Pyramid Technology Corporation Multiprocessor cache coherency tester that exercises the coherency logic exhaustively and also detects errors in a processor using an automatic CPU sort
US5404483A (en) * 1990-06-29 1995-04-04 Digital Equipment Corporation Processor and method for delaying the processing of cache coherency transactions during outstanding cache fills
US5426747A (en) * 1991-03-22 1995-06-20 Object Design, Inc. Method and apparatus for virtual memory mapping and transaction management in an object-oriented database system

Family Cites Families (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
FR2631763B1 (en) * 1988-05-18 1990-08-10 Telemecanique Electrique METHOD FOR THE TRANSMISSION OF INFORMATION BETWEEN ENTITIES SUITABLE FOR TRANSMITTING AND / OR RECEIVING INFORMATION
US5255291A (en) * 1988-11-14 1993-10-19 Stratacom, Inc. Microprocessor based packet isochronous clocking transmission system and method
US5191326A (en) * 1991-09-05 1993-03-02 Schlumberger Technology Corporation Communications protocol for digital telemetry system
US5408653A (en) * 1992-04-15 1995-04-18 International Business Machines Corporation Efficient data base access using a shared electronic store in a multi-system environment with shared disks
US5581704A (en) * 1993-12-06 1996-12-03 Panasonic Technologies, Inc. System for maintaining data coherency in cache memory by periodically broadcasting invalidation reports from server to client

Patent Citations (18)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US3771137A (en) * 1971-09-10 1973-11-06 Ibm Memory control in a multipurpose system utilizing a broadcast
US3723976A (en) * 1972-01-20 1973-03-27 Ibm Memory system with logical and real addressing
US5134697A (en) * 1987-11-16 1992-07-28 Prime Computer Remote memory-mapped display with interactivity determination
US5185878A (en) * 1988-01-20 1993-02-09 Advanced Micro Device, Inc. Programmable cache memory as well as system incorporating same and method of operating programmable cache memory
US4984153A (en) * 1988-04-27 1991-01-08 Unisys Corporation Storage locking control for a plurality of processors which share a common storage unit
US5146603A (en) * 1988-06-14 1992-09-08 International Computers Limited Copy-back cache system having a plurality of context tags and setting all the context tags to a predetermined value for flushing operation thereof
US5179675A (en) * 1988-09-30 1993-01-12 International Computers Limited Data processing system with cache memory addressable by virtual and physical address
US5210848A (en) * 1989-02-22 1993-05-11 International Business Machines Corporation Multi-processor caches with large granularity exclusivity locking
US5175851A (en) * 1989-05-15 1992-12-29 International Business Machines Corporation System and method for controlling client machine access to a portion of a file with a variable length
US5142550A (en) * 1989-06-29 1992-08-25 Symbol Technologies, Inc. Packet data communication system
US5113514A (en) * 1989-08-22 1992-05-12 Prime Computer, Inc. System bus for multiprocessor computer system
US5197139A (en) * 1990-04-05 1993-03-23 International Business Machines Corporation Cache management for multi-processor systems utilizing bulk cross-invalidate
US5404483A (en) * 1990-06-29 1995-04-04 Digital Equipment Corporation Processor and method for delaying the processing of cache coherency transactions during outstanding cache fills
US5212806A (en) * 1990-10-29 1993-05-18 International Business Machines Corporation Distributed control methods for management of migrating data stations in a wireless communications network
US5265235A (en) * 1990-11-30 1993-11-23 Xerox Corporation Consistency protocols for shared memory multiprocessors
US5121126A (en) * 1991-03-12 1992-06-09 Bell Atlantic Network Services Inc. Beacon enhanced telecommunications system and method
US5426747A (en) * 1991-03-22 1995-06-20 Object Design, Inc. Method and apparatus for virtual memory mapping and transaction management in an object-oriented database system
US5355471A (en) * 1992-08-14 1994-10-11 Pyramid Technology Corporation Multiprocessor cache coherency tester that exercises the coherency logic exhaustively and also detects errors in a processor using an automatic CPU sort

Non-Patent Citations (14)

* Cited by examiner, † Cited by third party
Title
D. Barbara et al., "A Class of Randomized Strategies for Low Cost Comparison of File Copies", IEEE Transactions on Parallel and Distributed Systems, vol. 2, No. 2, (Apr. 1991).
D. Barbara et al., A Class of Randomized Strategies for Low Cost Comparison of File Copies , IEEE Transactions on Parallel and Distributed Systems, vol. 2, No. 2, (Apr. 1991). *
S. Rangarajan et al., "Rectifying Corrupted Files in Distributed File Systems", Published in Proceedings of the 11th International Conference on Distributed Systems, May 1991.
S. Rangarajan et al., Rectifying Corrupted Files in Distributed File Systems , Published in Proceedings of the 11th International Conference on Distributed Systems, May 1991. *
Sampath Rangarajan et al., "Optimal Remote File Comparison in Replicated File Systems", Unpublished, Date prior to Nov. 12, 1993.
Sampath Rangarajan et al., Optimal Remote File Comparison in Replicated File Systems , Unpublished, Date prior to Nov. 12, 1993. *
T. Imielinski et al., "Data Dissemination in Wireless and Mobile Environments", Published in Technical Report 59, WINLAB, Rutgers University, Jun. 1993.
T. Imielinski et al., "Querying in highly mobile distributed environments", Published in Proceedings of the Eighteenth International Conference on Very Large Databases, Vancouver, Aug. 1992.
T. Imielinski et al., Data Dissemination in Wireless and Mobile Environments , Published in Technical Report 59, WINLAB, Rutgers University, Jun. 1993. *
T. Imielinski et al., Querying in highly mobile distributed environments , Published in Proceedings of the Eighteenth International Conference on Very Large Databases, Vancouver, Aug. 1992. *
Tom Madej, "An Application of Group Testing to the File Comparison Problem", IEEE, at pp. 237-243 (1989).
Tom Madej, An Application of Group Testing to the File Comparison Problem , IEEE, at pp. 237 243 (1989). *
W. Kent Fuchs et al., "Low-Cost Comparison and Diagnosis of Large Remotely Located Files", Proceedings of the Fifth Symposium on Reliability of Distributed Software and Database Systems, Jan. 1986.
W. Kent Fuchs et al., Low Cost Comparison and Diagnosis of Large Remotely Located Files , Proceedings of the Fifth Symposium on Reliability of Distributed Software and Database Systems, Jan. 1986. *

Cited By (90)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5737536A (en) * 1993-02-19 1998-04-07 Borland International, Inc. System and methods for optimized access in a multi-user environment
US5706435A (en) * 1993-12-06 1998-01-06 Panasonic Technologies, Inc. System for maintaining data coherency in cache memory by periodically broadcasting a single invalidation report from server to clients
USRE44685E1 (en) 1994-04-28 2013-12-31 Opentv, Inc. Apparatus for transmitting and receiving executable applications as for a multimedia system, and method and system to order an item using a distributed computing system
US9111604B2 (en) 1994-05-31 2015-08-18 Intellectual Ventures I Llc Software and method that enables selection of on-line content from one of a plurality of network content service providers in a single action
US8321499B2 (en) 1994-05-31 2012-11-27 Intellectual Ventures I Llc Method for distributing content to a user station
US8719339B2 (en) * 1994-05-31 2014-05-06 Intellectual Ventures I Llc Software and method that enables selection of one of a plurality of online service providers
US8825872B2 (en) 1994-05-31 2014-09-02 Intellectual Ventures I Llc Software and method for monitoring a data stream and for capturing desired data within the data stream
US8635272B2 (en) 1994-05-31 2014-01-21 Intellectual Ventures I Llc Method for distributing a list of updated content to a user station from a distribution server wherein the user station may defer installing the update
US9484078B2 (en) 1994-05-31 2016-11-01 Intellectual Ventures I Llc Providing services from a remote computer system to a user station over a communications network
US9484077B2 (en) 1994-05-31 2016-11-01 Intellectual Ventures I Llc Providing services from a remote computer system to a user station over a communications network
US8812620B2 (en) 1994-05-31 2014-08-19 Intellectual Property I LLC Software and method that enables selection of one of a plurality of online service providers
US20100042478A1 (en) * 1994-05-31 2010-02-18 Twintech E.U., Limited Liability Company Providing Services From A Remote Computer System To A User Station Over A Communications Network
US8499030B1 (en) 1994-05-31 2013-07-30 Intellectual Ventures I Llc Software and method that enables selection of one of a plurality of network communications service providers
US20100287155A1 (en) * 1994-05-31 2010-11-11 Twintech E.U., Limited Liability Company Software And Method That Enables Selection Of One Of A Plurality Of Online Service Providers
US8407682B2 (en) 1994-05-31 2013-03-26 Intellectual Ventures I Llc Software and method that enables selection of one of a plurality of online service providers
US7085553B1 (en) * 1995-08-31 2006-08-01 Oracle International Corporation Data communication protocols for a mobile-based client-server system over a wireless network
US5860153A (en) * 1995-11-22 1999-01-12 Sun Microsystems, Inc. Memory efficient directory coherency maintenance
US6122637A (en) * 1995-11-30 2000-09-19 Yohe; Thomas Patrick Apparatus and method for increased data access in an object oriented caching system
US5689696A (en) * 1995-12-28 1997-11-18 Lucent Technologies Inc. Method for maintaining information in a database used to generate high biased histograms using a probability function, counter and threshold values
US5864854A (en) * 1996-01-05 1999-01-26 Lsi Logic Corporation System and method for maintaining a shared cache look-up table
US8117286B2 (en) 1996-02-21 2012-02-14 Disney Enterprises, Inc. Method and apparatus for redirection of server external hyper-link references
US7702752B2 (en) 1996-02-21 2010-04-20 Disney Enterprises, Inc. Method and apparatus for redirection of server external hyper-link references
US6430596B1 (en) 1996-03-27 2002-08-06 Intel Corporation Managing networked directory services with auto field population
US6101528A (en) * 1996-03-27 2000-08-08 Intel Corporation Method and apparatus for discovering server applications by a client application in a network of computer systems
US5842216A (en) * 1996-05-03 1998-11-24 Mitsubishi Electric Information Technology Center America, Inc. System for sending small positive data notification messages over a network to indicate that a recipient node should obtain a particular version of a particular data item
US5802305A (en) * 1996-05-17 1998-09-01 Microsoft Corporation System for remotely waking a sleeping computer in power down state by comparing incoming packet to the list of packets storing on network interface card
US5884324A (en) * 1996-07-23 1999-03-16 International Business Machines Corporation Agent for replicating data based on a client defined replication period
US6112231A (en) * 1996-10-18 2000-08-29 At&T Corp. Server to cache protocol for improved web performance
US6138141A (en) * 1996-10-18 2000-10-24 At&T Corp Server to client cache protocol for improved web performance
US6405239B1 (en) * 1996-12-09 2002-06-11 Scientific-Atlanta, Inc. Using a hierarchical file system for indexing data broadcast to a client from a network of servers
WO1998026528A3 (en) * 1996-12-09 1998-10-15 Scientific Atlanta Using a hierarchical file system for indexing data broadcast to a client from a network of servers
WO1998026528A2 (en) * 1996-12-09 1998-06-18 Scientific-Atlanta, Inc. Using a hierarchical file system for indexing data broadcast to a client from a network of servers
US5961602A (en) * 1997-02-10 1999-10-05 International Business Machines Corporation Method for optimizing off-peak caching of web data
CN1294512C (en) * 1997-03-26 2007-01-10 国际商业机器公司 Method and apparatus for pre high speed buffer store data on service device
US6453343B1 (en) 1997-05-07 2002-09-17 International Business Machines Corporation Methods, systems and computer program products for maintaining a common checkpoint cache for multiple sessions between a single client and server
US6061714A (en) * 1997-05-07 2000-05-09 International Business Machines Corporation Persistent cache synchronization and start up system
US5907678A (en) * 1997-05-07 1999-05-25 International Business Machines Corporation Client/server system in which protocol caches for multiple sessions are selectively copied into a common checkpoint cache upon receiving a checkpoint request
US6578113B2 (en) * 1997-06-02 2003-06-10 At&T Corp. Method for cache validation for proxy caches
US6587840B1 (en) * 1997-09-08 2003-07-01 Reuters Limited Data health monitor for financial information communications networks
US20040039671A1 (en) * 1997-09-08 2004-02-26 Reuters Limited Data health monitor for financial information communications networks
AU751854B2 (en) * 1997-09-08 2002-08-29 Thomson Reuters Global Resources Unlimited Company Data health monitor for financial information communications networks
US6006206A (en) * 1997-09-08 1999-12-21 Reuters Limited Data health monitor for financial information communications networks
US7050981B2 (en) 1997-09-08 2006-05-23 Reuters Limited Data health monitor for financial information communications networks
US6546428B2 (en) 1998-11-13 2003-04-08 International Business Machines Corporation Methods, systems and computer program products for transferring a file using a message queue
US6279041B1 (en) 1998-11-13 2001-08-21 International Business Machines Corporation Methods, systems and computer program products for differencing data communications using a message queue
US7912453B2 (en) 1999-05-07 2011-03-22 At&T Mobility Ii Llc Method and apparatus for wireless data services over a selected bearer service
US20030211858A1 (en) * 1999-05-07 2003-11-13 Coan William Patrick Method and apparatus for wireless data services over a selected bearer service
US6584321B1 (en) 1999-05-07 2003-06-24 At&T Wireless Services, Inc. Method and apparatus for wireless data services over a selected bearer service
US6427172B1 (en) * 1999-07-20 2002-07-30 Cyberstar, L.P. Method and apparatus for internet cache content delivery via a data distribution system
US6584548B1 (en) * 1999-07-22 2003-06-24 International Business Machines Corporation Method and apparatus for invalidating data in a cache
US6981105B2 (en) 1999-07-22 2005-12-27 International Business Machines Corporation Method and apparatus for invalidating data in a cache
US6990526B1 (en) * 2000-05-22 2006-01-24 Pointred Technologies, Inc. Method and apparatus for web caching
US20040032625A1 (en) * 2000-10-30 2004-02-19 Koji Yamano Node structure information management method and radio network system
EP1331760A4 (en) * 2000-10-30 2005-11-02 Sharp Kk Node structure information management method and radio network system
EP1331760A1 (en) * 2000-10-30 2003-07-30 Sharp Kabushiki Kaisha Node structure information management method and radio network system
US7103354B2 (en) 2000-10-30 2006-09-05 Sharp Kabushiki Kaisha Node structure information management method and radio network system
US20030110218A1 (en) * 2001-12-12 2003-06-12 Stanley Randy P. Local caching of images for on-line conferencing programs
US20030163646A1 (en) * 2002-02-27 2003-08-28 O'neil Joseph Thomas Pre-loading content to caches for information appliances
US7010762B2 (en) * 2002-02-27 2006-03-07 At&T Corp. Pre-loading content to caches for information appliances
US20030204678A1 (en) * 2002-04-27 2003-10-30 Lg Electronics Inc. System and method for maintaining cache consistency in a wireless communication system
US7136968B2 (en) * 2002-04-27 2006-11-14 Lg Electronics Inc. System and method for maintaining cache consistency in a wireless communication system
CN1297154C (en) * 2002-04-27 2007-01-24 Lg电子株式会社 System and method for maintaining cache memory consistency in radio communication system
US20030217081A1 (en) * 2002-05-14 2003-11-20 Ken White System and method of maintaining functional client side data cache coherence
US6996584B2 (en) 2002-05-14 2006-02-07 Pervasive Software, Inc. System and method of maintaining functional client side data cache coherence
US20040111410A1 (en) * 2002-10-14 2004-06-10 Burgoon David Alford Information reservoir
US20040085980A1 (en) * 2002-10-31 2004-05-06 Lg Electronics Inc. System and method for maintaining transaction cache consistency in mobile computing environment
US7870245B2 (en) 2003-04-11 2011-01-11 Hewlett-Packard Development Company, L.P. Delivery context aware activity on networks: devices, software, and methods
US20040215757A1 (en) * 2003-04-11 2004-10-28 Hewlett-Packard Development Company, L.P. Delivery context aware activity on networks: devices, software, and methods
CN100444605C (en) * 2003-05-31 2008-12-17 乐金电子(中国)研究开发中心有限公司 Cache consistency maintaining method under wireless internet environment
US20050138232A1 (en) * 2003-12-22 2005-06-23 Matsushita Electric Industrial Co., Ltd. Memory system control method
US20050278346A1 (en) * 2004-06-10 2005-12-15 Sybase, Inc. System Providing Methodology for Replication Subscription Resolution
US7346633B2 (en) 2004-06-10 2008-03-18 Sybase, Inc. System providing methodology for replication subscription resolution
US9081780B2 (en) 2007-04-04 2015-07-14 Abo Enterprises, Llc System and method for assigning user preference settings for a category, and in particular a media category
US20090077499A1 (en) * 2007-04-04 2009-03-19 Concert Technology Corporation System and method for assigning user preference settings for a category, and in particular a media category
US7941764B2 (en) 2007-04-04 2011-05-10 Abo Enterprises, Llc System and method for assigning user preference settings for a category, and in particular a media category
US9654583B2 (en) 2007-05-29 2017-05-16 Domingo Enterprises, Llc System and method for increasing data availability on a mobile device based on operating mode
US20090055467A1 (en) * 2007-05-29 2009-02-26 Concert Technology Corporation System and method for increasing data availability on a mobile device based on operating mode
US8832220B2 (en) 2007-05-29 2014-09-09 Domingo Enterprises, Llc System and method for increasing data availability on a mobile device based on operating mode
US20080307316A1 (en) * 2007-06-07 2008-12-11 Concert Technology Corporation System and method for assigning user preference settings to fields in a category, particularly a media category
US8224856B2 (en) 2007-11-26 2012-07-17 Abo Enterprises, Llc Intelligent default weighting process for criteria utilized to score media content items
US8874574B2 (en) 2007-11-26 2014-10-28 Abo Enterprises, Llc Intelligent default weighting process for criteria utilized to score media content items
US9164994B2 (en) 2007-11-26 2015-10-20 Abo Enterprises, Llc Intelligent default weighting process for criteria utilized to score media content items
US20090138457A1 (en) * 2007-11-26 2009-05-28 Concert Technology Corporation Grouping and weighting media categories with time periods
US20090138505A1 (en) * 2007-11-26 2009-05-28 Concert Technology Corporation Intelligent default weighting process for criteria utilized to score media content items
US20090158146A1 (en) * 2007-12-13 2009-06-18 Concert Technology Corporation Resizing tag representations or tag group representations to control relative importance
US20130268930A1 (en) * 2012-04-06 2013-10-10 Arm Limited Performance isolation within data processing systems supporting distributed maintenance operations
CN108293065A (en) * 2015-11-19 2018-07-17 微软技术许可有限责任公司 Enhancement mode control to the data of cache
CN108293065B (en) * 2015-11-19 2021-08-24 微软技术许可有限责任公司 Method, apparatus and system for enhanced mode control of cached data
US20190325052A1 (en) * 2018-04-20 2019-10-24 Oracle International Corporation Consistent client-side caching for fine grained invalidations
US11567934B2 (en) * 2018-04-20 2023-01-31 Oracle International Corporation Consistent client-side caching for fine grained invalidations

Also Published As

Publication number Publication date
US5706435A (en) 1998-01-06
JPH07248968A (en) 1995-09-26

Similar Documents

Publication Publication Date Title
US5581704A (en) System for maintaining data coherency in cache memory by periodically broadcasting invalidation reports from server to client
Tian et al. An evaluation of cache invalidation strategies in wireless environments
Huang et al. Data replication for mobile computers
Barbara et al. Sleepers and workaholics: Caching strategies in mobile environments
Barbara et al. Sleepers and workaholics: Caching strategies in mobile environments (extended version)
EP1072004B1 (en) High performance object cache
US6564218B1 (en) Method of checking the validity of a set of digital information, and a method and an apparatus for retrieving digital information from an information source
Wu et al. Energy-efficient caching for wireless mobile computing
US8949420B2 (en) Content pre-fetching and preparation
JP3442919B2 (en) Communication system and method including energy efficient more cache for mobile computer
Cai et al. Energy‐efficient selective cache invalidation
US20020129168A1 (en) Data transfer scheme using caching and differential compression techniques for reducing network load
EP2169909A1 (en) System and method to maintain coherence of cache contents in a multi-tier software system aimed at interfacing large databases
EP2062125A2 (en) System and method for providing high availability data
JPH08328975A (en) Data managing device
CN104915319A (en) System and method of caching information
US7136968B2 (en) System and method for maintaining cache consistency in a wireless communication system
US8818855B2 (en) System and method for aggregating information over a wide area network
US6345304B1 (en) Obtaining network addresses from identifiers
Tan Organization of invalidation reports for energy-efficient cache invalidation in mobile environments
JPH06290090A (en) Remote file accessing system
JPH05143435A (en) Data base system
US20030115202A1 (en) System and method for processing a request using multiple database units
CN115550441A (en) Caching proxy method and device
CN113518013B (en) Processing method and device for realizing heartbeat mechanism

Legal Events

Date Code Title Description
AS Assignment

Owner name: PANASONIC TECHNOLOGIES, INC., NEW JERSEY

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:BARBARA, DANIEL;IMIELINSKI, TOMASZ;REEL/FRAME:006798/0594

Effective date: 19931202

STCF Information on status: patent grant

Free format text: PATENTED CASE

FPAY Fee payment

Year of fee payment: 4

AS Assignment

Owner name: MATSUSHITA ELECTRIC CORPORATION OF AMERICA, NEW JE

Free format text: MERGER;ASSIGNOR:PANASONIC TECHNOLOGIES, INC.;REEL/FRAME:012211/0907

Effective date: 20010928

FPAY Fee payment

Year of fee payment: 8

AS Assignment

Owner name: PANASONIC CORPORATION OF NORTH AMERICA, NEW JERSEY

Free format text: MERGER;ASSIGNOR:MATSUSHITA ELECTRIC CORPORATION OF AMERICA;REEL/FRAME:016237/0751

Effective date: 20041123

FPAY Fee payment

Year of fee payment: 12