Embodiments of the present invention relate to memory management, and in one embodiment, a method to minimize memory footprint of different software entities and maximize performance using already constructed objects.
The prior art computing system 100 runs are extensive amount of concurrent application threads per virtual machine. Specifically, there are X concurrent application threads (1121 through 112X) running on virtual machine 113; there are Y concurrent application threads (2121 through 212Y) running on virtual machine 213; . . . and, there are Z concurrent application threads (N121 through N12Z) running on virtual machine N13; where, each of X, Y and Z are a large number.
A virtual machine, as is well understood in the art, is an abstract machine that converts (or “interprets”) abstract code into code that is understandable to a particular type of a hardware platform. For example, if the processing core of computing system 100 included PowerPC microprocessors, each of virtual machines 113, 213 through N13 would respectively convert the abstract code of threads 1121 through 112X, 2121 through 212Y, and N121 through N12Z into instructions sequences that a PowerPC microprocessor can execute.
Because virtual machines operate at the instruction level they tend to have processor-like characteristics, and, therefore, can be viewed as having their own associated memory. The memory used by a functioning virtual machine is typically modeled as being local (or “private”) to the virtual machine. Hence,
A portion of a virtual machine's local memory may be implemented as the virtual machine's cache. As such,
For example, in an object-oriented environment, an object that is subjected to frequent use by a virtual machine (for whatever reason) may be stored in the virtual machine's cache. The combination of the cache's low latency and the frequent use of the particular object by the virtual machine corresponds to a disproportionate share of the virtual machine's fetches being that of the lower latency cache; which, in turn, effectively improves the overall productivity of the virtual machine.
A problem with the prior art implementation of
Given that the application threads running on an application server 100 typically have “mission critical” importance, the wholesale crash of scores of such threads is a significant problem for the enterprise.
Methods for a treatment of cached objects are described. In one embodiment, an application is configured to cache objects according to different caching treatments, each different caching treatment associated with its own region of cache. The configuring also involves installing a different combination of storage and eviction policy plug-ins for each different region of cache, with each of the storage plug-ins including code to perform get and put operations, and each of the eviction policy plug-ins including code to perform cache eviction operations.
The present invention is illustrated by way of example, and not limitation, in the figures of the accompanying drawings in which:
In the following description, for the purposes of explanation, numerous specific details are set forth in order to provide a thorough understanding of the present invention. It will be apparent, however, to one skilled in the art that the present invention may be practiced without some of these specific details. In other instances, well-known structures and devices are shown in block diagram form.
Note that in this detailed description, references to “one embodiment” or “an embodiment” mean that the feature being referred to is included in at least one embodiment of the invention. Moreover, separate references to “one embodiment” in this description do not necessarily refer to the same embodiment; however, neither are such embodiments mutually exclusive, unless so stated, and except as will be readily apparent to those skilled in the art. Thus, the invention can include any variety of combinations and/or integrations of the embodiments described herein.
The present invention includes various steps, which will be described below. The steps of the present invention may be performed by hardware components or may be embodied in machine-executable instructions, which may be used to cause a general-purpose or special-purpose processor programmed with the instructions to perform the steps. Alternatively, the steps may be performed by a combination of hardware and software.
The present invention may be provided as a computer program product that may include a machine-readable medium having stored thereon instructions, which may be used to program a computer (or other electronic devices) to perform a process according to the present invention. The machine-readable medium may include, but is not limited to, floppy diskettes, optical disks, CD-ROMs, and magneto-optical disks, ROMs, RAMs, EPROMs, EEPOMs, magnetic or optical cards, flash memory, or other type of media/machine-readable medium suitable for storing electronic instructions.
According to the depiction of
In order to concurrently execute a comparable number of application threads as the prior art system 100 of
Thus, for example, if the prior art system 100 of
Here, the prior art system 100 instantiates one virtual machine per CPU while the improved system 200 of
Recall from the discussion of
Thus, whereas the prior art computing system 100 of
According to an object oriented approach where each of virtual machines 123, 223, . . . M23 does not have visibility into the local memories of the other virtual machines, specific rules are applied that mandate whether or not information is permitted to be stored in shared memory 230. Specifically, to first order, according to an embodiment, an object residing in shared memory 230 should not contain a reference to an object located in a virtual machine's local memory because an object with a reference to an unreachable object is generally deemed “non useable”.
That is, if an object in shared memory 230 were to have a reference into the local memory of a particular virtual machine, the object is essentially non useable to all other virtual machines; and, if shared memory 230 were to contain an object that was useable to only a single virtual machine, the purpose of the shared memory 230 would essentially be defeated.
In order to uphold the above rule, and in light of the fact that objects frequently contain references to other objects (e.g., to effect a large process by stringing together the processes of individual objects; and/or, to effect relational data structures), “shareable closures” are employed. A “closure” is a group of one or more objects where every reference stemming from an object in the group that references another object does not reference an object outside the group. That is, all the object-to-object references of the group can be viewed as closing upon and/or staying within the confines of the group itself. Note that a single object without any references stemming from can be viewed as meeting the definition of a closure.
If a closure with a non shareable object were to be stored in shared memory 230, the closure itself would not be shareable with other virtual machines, which, again, defeats the purpose of the shared memory 230. Thus, in an implementation, in order to keep only shareable objects in shared memory 230 and to prevent a reference from an object in shared memory 230 to an object in a local memory, only “shareable” (or “shared”) closures are stored in shared memory 230. A “shared closure” is a closure in which each of the closure's objects are “shareable.”
A shareable object is an object that can be used by other virtual machines that store and retrieve objects from the shared memory 230. As discussed above, in an embodiment, one aspect of a shareable object is that it does not possess a reference to another object that is located in a virtual machine's local memory. Other conditions that an object must meet in order to be deemed shareable may also be effected. For example, according to a particular Java embodiment, a shareable object must also posses the following characteristics: 1) it is an instance of a class that is serializable; 2) it is an instance of a class that does not execute any custom serializing or deserializing code; 3) it is an instance of a class whose base classes are all serializable; 4) it is an instance of a class whose member fields are all serializable; 5) it is an instance of a class that does not interfere with proper operation of a garbage collection algorithm; 6) it has no transient fields; and, 7) its finalize ( ) method is not overwritten.
Exceptions to the above criteria are possible if a copy operation used to copy a closure into shared memory 230 (or from shared memory 230 into a local memory) can be shown to be semantically equivalent to serialization and deserialization of the objects in the closure. Examples include instances of the Java 2 Platform, Standard Edition 1.3 java.lang.String class and java.util.Hashtable class.
Note that the introduction of the shared memory 230 introduces the prospect of a shared cache 240. Thus, the architecture of
Different types of containers may exist. For example, a first type of container may contain instances of pages and servlets for executing a web based “presentation” for one or more applications. A second type of container may contain granules of functionality (generically referred to as “components” and, in the context of Java, referred to as “beans”) that reference one another in sequence so that, when executed according to the sequence, a more comprehensive overall “business logic” application is realized (e.g., stringing revenue calculation, expense calculation and tax calculation components together to implement a profit calculation application).
The cache management service 302 is configured to have visibility into the local memory cache 325 of the virtual machine 323, the shared memory cache 340 and one or more other storage resources 350 such as a database or file system used for storing persisted objects. Here, as will be described in more detail below, different applications whose abstract code (e.g., Java byte code in the case of Java) is executed by virtual machine 323 can specially configure the cache management service 302 to treat its cached objects in accordance with specific guidelines.
According to various schemes, the cache manager 302 effectively configures regions of cache for the storage of objects in local cache memory 326 and/or in shared memory cache 340 according to different treatment policies. Multiple cache regions defining different cache treatments may be established for a single application. Cached objects placed in local memory cache 326 may be conveniently utilized by the virtual machine 323 associated with the local memory where local cache 326 resides for quick processing by the application. By contrast, cached objects placed in shared memory cache 340 may be utilized by the local virtual machine 323 as well as other virtual machines that have visibility into the shared memory in which the shared memory cache 340 is implemented.
A cache region effectively determines the treatment that an object that is stored in the cache region will receive. For example, cache region_1410 determines the treatment of object 460, while cache region_2412 determines the treatment of cached object 461. By comparison, object 460 will receive different treatment than object 461 because of the different treatment imposed by the different cache regions 410, 412.
For each cache region, in an embodiment, cache manager 402 implements a storage plug-in and an eviction policy plug-in. The storage plug-in may be, in one embodiment, the actual piece of software or code that executes the “get” and “put” operations for the objects stored according to the treatment determined by the associated cache region. That is, for example, whether the object is placed in the local memory cache, the shared memory cache, or some other type of storage resource such as a database or file system for storing persisted objects. The eviction policy plug-in may be, in one embodiment, the actual piece of software or code that dictates the removal of an object from cache (e.g., when some form of cache capacity threshold is exceeded).
In continuing from the example provided above, cache region_1410 defines the treatment of object 460 with storage plug-in_1420 and eviction policy plug-in_1421. Cache region_2412 defines the treatment of object 461 with storage plug-in_2422 and eviction policy plug-in_2423. Cache region_N 414 is generally represented as having storage plug-in_N 424 and eviction policy plug-in_N 425. For simplicity of description, each cache region is described as having only a single object that is treating according to the treatment determined by the cache region, but, it should be appreciated that any number of objects may be referenced by a particular cache region. Moreover, any object stored in, copied from, written to, or removed from the shared memory cache 432 may be a single object; or, an object that is part of a shared closure where the shared closure itself is respectively stored in, copied from, written to, or removed from the shared memory cache 432.
As illustrated in
Until now, a cache region (e.g., cache region_1410) has been generally described as defining the treatment for a particular object, that is, for putting and/or getting an object to/from either the local memory cache and/or the shared memory cache. The following provides greater detail as to the different types of cache regions that may be implemented by cache manager 402 for the treatment of objects as defined by its storage and eviction policy plug-ins. The different types of cache management treatments are referred to as “flavors” or “cache flavors”.
As shown in
Active removal of an object by the eviction policy plug-in (i.e., eviction) ignores the referenced states of the object as described above. As such, hard referenced objects may be just as easily removed as weak referenced objects according to the policies set forth by the eviction policy plug-in 521. Here, note that storage plug-in 520 may also institute “spooling” and “write through” policies to deeper storage. In an embodiment, a separate plug-in in cache region 511 (not shown) is used to interface with the deeper storage and is called upon as needed by storage plug-in 520 to institute spooling and write through policies.
When the active eviction process is invoked, soft reference 573 is changed to a weak reference 574. Under this condition, object 561 may be removed by a garbage collector if the application's hard reference no longer exists (e.g., because the application is no longer actively using the object 561). That is, object 561 remains protected from removal by the garbage collector as long as the application's hard reference 572 to the object 561 is present, otherwise the object will be removed. Here, note that storage plug-in 522 may also institute “spooling” and “write through” policies to deeper storage. In an embodiment, a separate plug-in cache region 512 (not shown) is used to interface with the deeper storage and is called upon as needed by storage plug-in 522 to institute spooling and write through policies. In one embodiment, by invoking the removal of object 560 from local memory cache_1530 (either by active eviction or garbage collection), cache region_2512 may also provide for object 560 to be copied to deeper storage.
Before moving forward it is important to re-emphasize that objects stored according to either of the local flavors discussed above may be of the non shareable type so as to be incapable of membership in a shared closure and storage into shared memory. Moreover, the application is apt to configure its different local cache regions such that objects receiving local flavor treatment are apt to be more heavily used (i.e., some combination of the number of “get” and “put” accesses over time) than objects treated according to the Soft Local flavor.
The application 501 is then free to use the local copy 562a as a “work horse” object. For each “put” operation made to the local copy 562a, (e.g., to effectively modify the object's earlier content) the storage plug-in 524 updates/writes to the shared copy 562b to reflect the “put” into the local memory cache 530. Note that because of the presence of shared copy 562b, a virtual machine other than the virtual machine that is associated with the local memory within which local memory cache_1530 is implemented may copy the shared copy 562b into its local memory cache (e.g., local memory cache 531) so as to create a third copy 562c of the object. The third copy 562c of the object can be used as a “work horse” object for another application (not shown) that runs off of the other local memory cache 531. This other application will make a hard reference to this object 562c as well (not shown). In one embodiment, storage plug-in 524 does not place any kind of reference to shared copy 562b because any shared closure is reachable in shared memory through a key name that uniquely identifies that shared closure; and moreover, shared closures are kept in shared memory until an application explicitly calls a “delete” operation (i.e., no garbage collection process is at work in shared memory at least for cached objects). As such, there is no need for any type of reference to a shared closure residing in shared memory.
If the other application associated with local memory cache_2531 effectively modifies its local object 562c (e.g., with a “put” operation), the storage plug-in for local memory cache_2531 will create a “second version” 563 of shared object 562b in shared memory cache 532 that incorporates the modification made to local object 562c. According to an implementation, the storage plug-in 524 does not receive any affirmative indication of the existence of the new version but is instead configured to look for new versions in shared memory (e.g., upon a “put” or “get” operation) given the possibility of their existence under the shared flavor scheme. For instance, a “get” operation by application 501 will result in the reading of object 562a and object 563 by plug-in 524. Likewise, a “put” operation by application 501 can result in the fetching of object 563 by plug-in 524 so that it is possible to modify a local copy of the object 563 version. Here, note that storage plug-in 524 may also institute “spooling” and “write through” policies to deeper storage. In an embodiment, a separate plug-in in cache region 513 (not shown) is used to interface with the deeper storage and is called upon as needed by storage plug-in 524 to institute spooling and write through policies.
In an extended embodiment, if a requirement to modify the object 564 arises, the storage plug-in 526 associated with the application 501 that desires to make the modification creates an entirely new object and places it into the shared memory 532 as a second version 565. Subsequently, when object 564 is requested from shared memory 532 by another application, the updated, second version 565 may also be retrieved. Here, note that storage plug-in 526 may also institute “spooling” and “write through” policies to deeper storage. In an embodiment, a separate plug-in in cache region 514 (not shown) is used to interface with the deeper storage and is called upon as needed by storage plug-in 526 to institute spooling and write through policies.
For either of the shared flavors discussed above, the storage plug-in may be configured to control the size of the shared closures that are being entered into shared memory cache 532. Specifically, smaller shared closures may be “bundled” with other shared closures to form effectively a data structure that contains multiple shared closures and that is effectively treated as a single shared closure for copying operations from shared memory cache 532 into local memory cache 530 (or vice versa). Here, a bundle may be created simply by ensuring that each shared closure in the bundle is associated through a reference to another shared closure in the bundle.
By increasing bundle size, overhead associated with copying objects back and forth between shared memory and local memory is reduced in certain circumstances, particularly, environments where many smaller shared closures are to be sent between shared memory and local memory at about the same time. Here, by bundling them, all shared closures can effectively be transported between shared memory and local memory by a single transfer process.
Until now, the storage plug-in for a particular cache region has been generally described as defining the cache storage treatment of one or more objects associated with the cache region. The storage plug-in may be, in one embodiment, the actual piece of software or code that executes various operations (e.g., “get” or “put”) for objects stored according to the treatment determined by the associated cache region.
Storage plug-in 603, in one embodiment, is logically represented as being capable of performing several functions, including Key Object Manipulation 604, Key Attribute Manipulation 605, Group Manipulation 606, Key Set Operations 607, Key System Attribute Manipulation 608, and Object Size Information 609. Several functionalities are also associated with eviction policy plug-in 610. These functionalities include Sorting 611, Eviction Timing 612, and Object Key Attribution 613. The various functionalities of eviction policy plug-in 610, which also define a treatment of objects in local memory cache 630 and shared memory cache 632, are described in greater detail further below with respect to
Key Object Manipulation 604 is a storage plug-in function that relates to the “get” and “put” operations for an object. For example, a “get” operation retrieves a particular object from local cache memory 630 and/or shared memory cache 632 depending on the “flavor” of the plug-in (consistent with the different caching flavors described in the preceding section). A “put” operation places a copy of an object into local memory cache 630 and/or shared memory cache 632 (again, consistent with the specific “flavor” of the plug-in). For each object associated with a cache region, an object name may be assigned to each object. In turn, each object name may correspond to a unique key value. One embodiment of this organizational structure is illustrated in
Referring to
Each object of cache group_1620 is associated with a unique key. That is, for example, Key_1640 is associated with object 670, key_2641 is associated with object 671, and key_N is associated with object 672. Each key is a value (e.g., alphanumeric) that, for instance, in one embodiment, is the name of the object. In an embodiment, the key for an object undergoes a hashing function in order to identify the numerical address in cache memory where the object is located.
As such, the Key Object Manipulation functionality 604 of storage plug-in 603 utilizes the key associated with an object to carry out “put” and “get” operations on that object. For simplicity, only a local memory cache 635 is considered (e.g., the storage plug-in may be a “local” or “soft local” flavor).
As an example, object 670 may have the key “Adam” in simple text form. An application (e.g., application_1601 of
A feature of the Key Object Manipulation 604 functionality is that an application does not need to know the exact location of a desired object. The application merely needs to reference an object by its key only and the Key Object Manipulation 604 functionality of the storage plug-in is able to actually put the object with that key into the local memory cache 630.
A “get” operation may be performed by the Key Object Manipulation 604 functionality in a similar manner. For example, object 671 may have the name “Bob.” An application (e.g., application_1601 of
Key Attribute Manipulation 605 is a functionality that relates to defining or changing particular attributes associated with an object. Here, each object has its own associated set of “attributes” that, in one embodiment, are stored in cache address locations other than that of the object itself. Attributes are characteristics of the object's character and are often used for imposing appropriate treatment upon the object. Examples of attributes include shareable/non-shareable and time-to-live (an amount of time an object is allowed to stay in a cache region before being evicted). As each cached object is associated with a key, an object's attributes may also be associated with the key.
Thus, as depicted in
The Key System Attribute Manipulation 608 allows for system attributes (i.e., system level parameters) to be keyed and manipulated, and, operates similarly to the key attribute manipulation 605.
Group Manipulation 606 is a storage plug-in functionality that allows for “put” or “get” manipulation of all the objects within a particular group. By specifying the group name for a group of objects, the application may retrieve (“get”) all the objects within that group. In an embodiment, the keys for a particular group are registered with the storage plug-in 603. As such, a group name that is supplied by the application is “effectively” converted into all the keys of the objects in the group by the storage plug-in 603. For example, application_1601 may run a “get” operation for cache group_1620. By using the name of cache group_1620 as the input, each of keys key_1640, key_2641, . . . key_N 642 are used by the storage plug in cache of keys to perform a “get” operation.
The Object Size Information function 609 causes the storage plug-in 603 to calculate the size of an object (e.g., in bytes). Here, the application supplies the key of the object whose size is to be calculated and specifies the object size information function 609. Combined with a Group Manipulation function, the Object Size Information function 609 enables storage plug-in 603 to calculate the size of an entire group. The Key Set Operations function 607 is used to perform specific operations with the keys themselves (e.g., return to the application all key values in a group specified by the application).
As discussed above, each object may have a collection of attributes (e.g., shareable/non-shareable, time-to-live, etc.). In one embodiment, these attributes may be organized in local memory cache to be accessed by an application in a manner similar to the retrieving of an object with a “get” operation described above with respect to the Key Object Manipulation 604 function. In one embodiment, a series of hashing operations may be performed to retrieve one or attributes of a particular object.
A “get” operation for a particular attribute of an object may be carried out in the following manner. Application_1601 specifies: 1) the operation 658 (e.g., “get”); 2) the key for the object 668 (e.g., “ADAM”); and, 3) the applicable attribute 678 (e.g., “SHAREABLE/NON-SHAREABLE”). As discussed above with respect to
A second hashing function (i.e., hash_2651) is performed using the desired attribute 678 (e.g., SHAREABLE/NON-SHAREABLE) as the key. The hash_2651 hashing function identifies the particular numerical address of the particular attribute of attributes table 655 that is to be accessed. For example, if the Shareable/Non-shareable attribute value corresponds to value_2663, the alphanumeric “name” of the attribute (e.g., “Shareable/Non-shareable”) would map to address_2662 of attributes table 655.
Caches, either local or shared, have limited storage capacities. As such, a cache may require a procedure to remove lesser used objects in order, for example, to add new objects to the cache. Similar to a storage plug-in being designed to impose certain storage treatment(s) on an object, the eviction policy plug-in provides various functionalities for the active removal of an object from cache. As briefly discussed above with respect to
Referring to
To the extent the sorting component 611 can be viewed as a component that chooses “what” object should be removed from cache, the eviction timing component 612 is a component that determines “when” an object should be removed from cache. Different flavors for eviction timing components may also exist and be chosen from for implementation. Typically, a single eviction timing component is instantiated per cache region; but, conceivably, multiple eviction policy components may be instantiated as well (e.g., one per cache group). The object key attribution 613 component enables the involvement of certain object attributes (e.g., object size) in eviction processes.
For simplicity, the remainder of this detailed description will be written as if an eviction policy plug-in applies to an entire cache region.
According to the design of the LRU queue 617, objects cached in a cache region that are accessed least recently (e.g., through either a “get” or “put” operation) are discarded first. LRU queue 617 is represented with a vertical ordering structure for multiple keys (e.g., key_1655, key_2656, . . . key_N 657). Essentially, the top of the queue represents keys for objects that have been used most recently, and, the bottom of the queue represents keys for objects that have been used least recently. According to one implementation of LRU queue 617, the object corresponding to the key at the very bottom would be next evicted. Removal of a key from the bottom of the queue triggers the eviction of that key's corresponding object from cache.
Here, any time an object is accessed (e.g., by way of a “get” or “put” operation), the key corresponding to that object is positioned at the very top of LRU queue 617. As illustrated by the position of key_1655, the object associated with key_1655 is the most recently accessed object. If, however, in a following operation an application (e.g., application_1601) accesses the object associated with key_2656, then, key_2656 would be repositioned above key_1655 in the LRU queue 617.
At any given instant of time, the key whose object has spent the longest amount of time in the cache region without being accessed will reside at the bottom of the queue. As such, when the moment arises to remove an object from the cache region, the object whose key resides at the bottom of the queue will be selected for removal from the cache region.
LFU queue 618 is an eviction policy in which cached objects accessed least frequently (e.g., through either a “get” or “put” operation), based on a counter, are discarded first. Each key for an object may have an associated counter that measures or keeps track of the number of times the object is accessed (e.g., the counter for the object's key is incremented each time the object is accessed). In one embodiment, the counter value may be an “attribute” for the object as described previously.
As with LRU queue 617, LFU queue 618 is represented with a vertical ordering structure for multiple keys (e.g., key_1665, key_2666, . . . key_N 667). The top of the queue represents keys for objects that have the highest counter value, and the bottom of the queue represents keys for objects with the lowest counter value. Here, over the course of time, those keys whose corresponding objects are accessed more frequently than other cached objects will be “buoyant” and reside near the top of the queue; while, those keys whose corresponding objects are accessed less frequently than the other objects in the cache region will “sink” toward the bottom of the queue.
At any instant of time, the key whose corresponding object has been used less than any other object in the cache region will be at the bottom of the queue. Thus, according to one implementation of LFU queue 618, the object corresponding to the key at the very bottom would be next evicted, because that object has the lowest counter value (i.e., lowest frequency of use). Removal of the key from the bottom of the queue triggers the eviction of that key's corresponding object from the cache region. Note that the counters for all the keys may be reset periodically or with each entry of a newly cached object in order to ensure that all the counter values can be used as a comparative measurement of use.
Size-based queue 619 is an eviction policy in which cached objects are prioritized according to size (e.g., the number of total bytes for the object). As such, object size may be another object attribute. The keys for objects in size-based queue 619 are shown arranged vertically with the smallest objects positioned near the top of the queue and keys for the largest objects positioned near the bottom of the queue. According to one implementation of size-based queue 619, the object corresponding to the key at the very bottom would be evicted first, because that object consumes the most amount of cache region space, and its subsequent removal would result in the most amount of free cache region space recovered (amongst all the objects that are cached in the cache region).
FIFO queue 621 is an eviction policy in which cached objects are removed according to the order that they are placed in the cache relative to one another. In one embodiment, when an eviction moment arises, the first cached object eligible for eviction corresponds to the object that has spend the most time in the cache, followed by the next oldest object, and so on. FIFO queue 621, illustrated in
Referring back to
In one embodiment, three threshold levels may be established for the cache region. A first threshold level, threshold_1645, corresponds to a level at which the eviction of a key from the sorting queue occurs on a timely basis. For example, when the count exceeds threshold_1645 (but not threshold_2646), a key is evicted from the sorting queue every millisecond until the total count falls below threshold_1645. In one embodiment, no active eviction occurs for count levels below threshold_1645.
A second threshold level, threshold_2646, corresponds to a level above which eviction of a key occurs on each entry into the cache of a newly cached object. That is, with each new addition of an object into cache, the key at the bottom of the applicable sorting queue is removed from the queue resulting in its corresponding object's eviction from cache. With this approach, the population of the cache region should remain constant in the absence of objects being removed from the cache region by processes other than eviction (such as deletion and/or garbage collection and/or attribute based as described below with respect to Object Key Attribution). With processes other than eviction, the cache region population may fall below threshold_2646 after the threshold has been crossed.
A third threshold level, threshold_3647, corresponds to a level equal to the targeted maximum allocation 648 for the cache region. When this level is exceeded, keys are evicted from the sorting queue until, in one embodiment, the total count of keys decreases to threshold_3647 (or just beneath threshold_3647). Note that this approach contemplates the population of the cache region exceeding its “targeted” maximum allocation for some reason.
Either of the eviction timing techniques may be used with the LRU 617 LFU 618 or FIFO 619 sorting technique.
In one embodiment, threshold_1685, threshold_2686, and threshold_3687 have similar properties with threshold_1645, threshold_2646, and threshold_3647, respectively. The only difference is that the memory consumption of the cache region (through the caching of its cached objects) triggers the crossing of the various thresholds.
Referring again back to
Also, in the case of size based eviction policies, each objects size may be found in its attribute table.
The preceding discussions revealed that, referring to
Here, definition of a specific cache region is effected by selecting 1604 a storage plug-in from the storage plug-in part 1602 of the cache management library 1601 and by selecting 1605 a sorting component plug-in from the sorting component plug-in part 1603 of the cache management library 1601. For each new cache region to be implemented, another iteration of the selection processes 1604, 1605 is performed. Thus, if a single application were to establish multiple cache regions, the configuration for the application would entail running through selection processes 1604, 1605 for each cache region to be implemented.
As discussed above with respect to
In another example, a first computing system having a first virtual machine may crash during the course of running operations with a number of objects. If the objects are stored in a persisted database, a second virtual machine from a second computing system may be able to restore the operations that were running on the first computing system, using the same objects retrieved from the persisted database.
In one embodiment, a Structured Query language (SQL), or SQL-like command statement may be used to write a serialized version of object 850b into database 820. (In
Upon receiving the success notification and the de-serialized key for object 850b, cache manager_1804 serializes 833 the key for object 850b and sends the serialized key 834 across a network 806 to computing system_2802. Cache manager_2808 receives the serialized key for object 850b and then de-serializes the key, 835. The de-serialized key may then be registered with a storage plug-in associated with cache manager_2808.
When application_2807 running on computing system_2802 requests 837 object 850b, the de-serialized object key that is registered with cache manager_2808 is used to retrieve 838 the serialized object 850b from database 820 at computing system_2802. The serialized object 850b may then be de-serialized 839 by cache manager_2808. The de-serialized object 850a may then be saved in local memory cache_2809 and/or shared memory cache_2810.
Processes taught by the discussion above may be performed with program code such as machine-executable instructions which cause a machine (such as a “virtual machine”, a general-purpose processor disposed on a semiconductor chip or special-purpose processor disposed on a semiconductor chip) to perform certain functions. Alternatively, these functions may be performed by specific hardware components that contain hardwired logic for performing the functions, or by any combination of programmed computer components and custom hardware components.
An article of manufacture may be used to store program code. An article of manufacture that stores program code may be embodied as, but is not limited to, one or more memories (e.g., one or more flash memories, random access memories (static, dynamic or other)), optical disks, CD-ROMs, DVD ROMs, EPROMs, EEPROMs, magnetic or optical cards or other type of machine-readable media suitable for storing electronic instructions. Program code may also be downloaded from a remote computer (e.g., a server) to a requesting computer (e.g., a client) by way of data signals embodied in a propagation medium (e.g., via a communication link (e.g., a network connection)).
It is believed that processes taught by the discussion above can be practiced within various software environments such as, for example, object-oriented and non-object-oriented programming environments, Java based environments (such as a Java 2 Enterprise Edition (J2EE) environment or environments defined by other releases of the Java standard), or other environments (e.g., a .NET environment, a Windows/NT environment each provided by Microsoft Corporation).
In the foregoing specification, the invention has been described with reference to specific exemplary embodiments thereof. It will, however, be evident that various modifications and changes may be made thereto without departing from the broader spirit and scope of the invention as set forth in the appended claims. The specification and drawings are, accordingly, to be regarded in an illustrative rather than a restrictive sense.
This application is a continuation of U.S. application Ser. No. 13/181,299, filed Jul. 12, 2011, entitled “CACHE REGION CONCEPT,”: which is a continuation of U.S. application Ser. No. 12/831,918, filed Jul. 7, 2010, entitled “CACHE REGION CONCEPT,” which is a continuation of U.S. application Ser. No. 11/024,554, filed Dec. 28, 2004, entitled “CACHE REGION CONCEPT,” all of which are incorporated herein by reference in their entirety.
Number | Name | Date | Kind |
---|---|---|---|
5034885 | Matoba et al. | Jul 1991 | A |
5274804 | Jackson et al. | Dec 1993 | A |
5276835 | Mohan et al. | Jan 1994 | A |
5311318 | Montgomery | May 1994 | A |
5331318 | Montgomery | Jul 1994 | A |
5553242 | Russell et al. | Sep 1996 | A |
5566302 | Khalidi et al. | Oct 1996 | A |
5566315 | Milillo et al. | Oct 1996 | A |
5590328 | Seno et al. | Dec 1996 | A |
5594886 | Smith et al. | Jan 1997 | A |
5617570 | Russell et al. | Apr 1997 | A |
5636355 | Ramakrishnan et al. | Jun 1997 | A |
5682328 | Roeber et al. | Oct 1997 | A |
5692193 | Jagannathan et al. | Nov 1997 | A |
5710909 | Brown et al. | Jan 1998 | A |
5745778 | Alfieri | Apr 1998 | A |
5778430 | Ish et al. | Jul 1998 | A |
5781924 | Zaitzeva et al. | Jul 1998 | A |
5805790 | Nota et al. | Sep 1998 | A |
5809527 | Cooper et al. | Sep 1998 | A |
5822759 | Treynor | Oct 1998 | A |
5844781 | Schlotterer | Dec 1998 | A |
5884316 | Bernstein et al. | Mar 1999 | A |
5905868 | Baghai et al. | May 1999 | A |
5926834 | Carlson et al. | Jul 1999 | A |
5933601 | Fanshier et al. | Aug 1999 | A |
5933848 | Moenne-Loccoz | Aug 1999 | A |
5944781 | Murray | Aug 1999 | A |
5951643 | Shelton et al. | Sep 1999 | A |
5961584 | Wolf | Oct 1999 | A |
5966127 | Yajima | Oct 1999 | A |
5974566 | Ault et al. | Oct 1999 | A |
6038571 | Numajiri et al. | Mar 2000 | A |
6047295 | Endicott et al. | Apr 2000 | A |
6065006 | Decarmo | May 2000 | A |
6075938 | Bugnion et al. | Jun 2000 | A |
6092171 | Relph | Jul 2000 | A |
6115712 | Islam et al. | Sep 2000 | A |
6115721 | Nagy | Sep 2000 | A |
6141728 | Simionescu et al. | Oct 2000 | A |
6154811 | Srbljic et al. | Nov 2000 | A |
6167423 | Chopra et al. | Dec 2000 | A |
6167449 | Arnold et al. | Dec 2000 | A |
6199179 | Kauffman et al. | Mar 2001 | B1 |
6216212 | Challenger et al. | Apr 2001 | B1 |
6256712 | Challenger et al. | Jul 2001 | B1 |
6272598 | Arlitt et al. | Aug 2001 | B1 |
6292099 | Tse et al. | Sep 2001 | B1 |
6295582 | Spencer | Sep 2001 | B1 |
6336170 | Dean et al. | Jan 2002 | B1 |
6356529 | Zarom | Mar 2002 | B1 |
6356946 | Clegg et al. | Mar 2002 | B1 |
6385643 | Jacobs et al. | May 2002 | B1 |
6385653 | Sitaraman et al. | May 2002 | B1 |
6389460 | Stewart et al. | May 2002 | B1 |
6389509 | Berenguel et al. | May 2002 | B1 |
6412045 | DeKoning et al. | Jun 2002 | B1 |
6415364 | Bauman et al. | Jul 2002 | B1 |
6425057 | Cherkasova et al. | Jul 2002 | B1 |
6438654 | Elko et al. | Aug 2002 | B1 |
6446088 | Vaduvur et al. | Sep 2002 | B1 |
6467052 | Kaler et al. | Oct 2002 | B1 |
6502148 | Krum | Dec 2002 | B1 |
6519594 | Li | Feb 2003 | B1 |
6523027 | Underwood | Feb 2003 | B1 |
6539445 | Krum | Mar 2003 | B1 |
6587937 | Jensen et al. | Jul 2003 | B1 |
6591347 | Tischler et al. | Jul 2003 | B2 |
6601112 | O'Rourke et al. | Jul 2003 | B1 |
6601143 | Lamparter | Jul 2003 | B1 |
6615253 | Bowman-Amuah | Sep 2003 | B1 |
6640244 | Bowman-Amuah | Oct 2003 | B1 |
6651080 | Liang et al. | Nov 2003 | B1 |
6675214 | Stewart et al. | Jan 2004 | B2 |
6687702 | Vaitheeswaran et al. | Feb 2004 | B2 |
6728748 | Mangipudi et al. | Apr 2004 | B1 |
6732237 | Jacobs et al. | May 2004 | B1 |
6738977 | Berry et al. | May 2004 | B1 |
6748487 | Takamoto et al. | Jun 2004 | B1 |
6754662 | Li | Jun 2004 | B1 |
6757708 | Craig et al. | Jun 2004 | B1 |
6760815 | Traversat et al. | Jul 2004 | B1 |
6760911 | Ye | Jul 2004 | B1 |
6766419 | Zahir et al. | Jul 2004 | B1 |
6772409 | Chawla et al. | Aug 2004 | B1 |
6779088 | Benveniste et al. | Aug 2004 | B1 |
6795856 | Bunch | Sep 2004 | B1 |
6799202 | Hankinson et al. | Sep 2004 | B1 |
6829679 | DeSota et al. | Dec 2004 | B2 |
6938085 | Belkin et al. | Aug 2005 | B1 |
6944711 | Mogi et al. | Sep 2005 | B2 |
6970925 | Springmeyer et al. | Nov 2005 | B1 |
6976090 | Ben-Shaul et al. | Dec 2005 | B2 |
6990534 | Mikhailov et al. | Jan 2006 | B2 |
6996679 | Cargnoni et al. | Feb 2006 | B2 |
7013329 | Paul et al. | Mar 2006 | B1 |
7024512 | Franaszek et al. | Apr 2006 | B1 |
7035870 | McGuire et al. | Apr 2006 | B2 |
7051161 | Dixit et al. | May 2006 | B2 |
7069271 | Fadel et al. | Jun 2006 | B1 |
7089566 | Johnson | Aug 2006 | B1 |
7096319 | Mogi et al. | Aug 2006 | B2 |
7096418 | Singhal et al. | Aug 2006 | B1 |
7111300 | Salas et al. | Sep 2006 | B1 |
7124170 | Sibert | Oct 2006 | B1 |
7127472 | Enokida et al. | Oct 2006 | B1 |
7127713 | Davis et al. | Oct 2006 | B2 |
7139792 | Mishra et al. | Nov 2006 | B1 |
7149741 | Burkey et al. | Dec 2006 | B2 |
7155512 | Lean et al. | Dec 2006 | B2 |
7165239 | Hejlsberg et al. | Jan 2007 | B2 |
7167917 | Creamer et al. | Jan 2007 | B2 |
7174363 | Goldstein et al. | Feb 2007 | B1 |
7177823 | Lam et al. | Feb 2007 | B2 |
7184922 | Ousley et al. | Feb 2007 | B2 |
7185096 | Kalyanavarathan et al. | Feb 2007 | B2 |
7191170 | Ganguly et al. | Mar 2007 | B2 |
7194761 | Champagne | Mar 2007 | B1 |
7231435 | Ohta | Jun 2007 | B2 |
7254634 | Davis et al. | Aug 2007 | B1 |
7277935 | Sato | Oct 2007 | B2 |
7296267 | Cota-Robles et al. | Nov 2007 | B2 |
7302423 | De Bellis | Nov 2007 | B2 |
7302609 | Matena et al. | Nov 2007 | B2 |
7305495 | Carter | Dec 2007 | B2 |
7308501 | DeLima et al. | Dec 2007 | B2 |
7373661 | Smith et al. | May 2008 | B2 |
7383289 | Kraft | Jun 2008 | B2 |
7409709 | Smith et al. | Aug 2008 | B2 |
7418560 | Wintergerst | Aug 2008 | B2 |
7421495 | Yang et al. | Sep 2008 | B2 |
7444644 | Slaughter et al. | Oct 2008 | B1 |
7467162 | Rosenbloom et al. | Dec 2008 | B2 |
7512737 | Petev | Mar 2009 | B2 |
7532571 | Price et al. | May 2009 | B1 |
7539821 | Petev et al. | May 2009 | B2 |
7552284 | Petey et al. | Jun 2009 | B2 |
7694065 | Petev et al. | Apr 2010 | B2 |
7840760 | Petey | Nov 2010 | B2 |
7971001 | Petev et al. | Jun 2011 | B2 |
7996615 | Galchev | Aug 2011 | B2 |
9009409 | Galchev et al. | Apr 2015 | B2 |
20010029520 | Miyazaki | Oct 2001 | A1 |
20010054004 | Powers | Dec 2001 | A1 |
20020046325 | Cai et al. | Apr 2002 | A1 |
20020052914 | Zalewski et al. | May 2002 | A1 |
20020073283 | Lewis et al. | Jun 2002 | A1 |
20020078060 | Garst et al. | Jun 2002 | A1 |
20020083118 | Sim | Jun 2002 | A1 |
20020083166 | Dugan et al. | Jun 2002 | A1 |
20020087700 | Chae | Jul 2002 | A1 |
20020093487 | Rosenberg | Jul 2002 | A1 |
20020099691 | Lore et al. | Jul 2002 | A1 |
20020099753 | Hardin et al. | Jul 2002 | A1 |
20020133805 | Pugh et al. | Sep 2002 | A1 |
20020143958 | Montero et al. | Oct 2002 | A1 |
20020147888 | Trevathan | Oct 2002 | A1 |
20020156863 | Peng | Oct 2002 | A1 |
20020165909 | Martin et al. | Nov 2002 | A1 |
20020169926 | Pinckney et al. | Nov 2002 | A1 |
20020174097 | Rusch et al. | Nov 2002 | A1 |
20020181307 | Fifield et al. | Dec 2002 | A1 |
20020198923 | Hayes, Jr. | Dec 2002 | A1 |
20020198953 | O'Rourke et al. | Dec 2002 | A1 |
20030014521 | Elson et al. | Jan 2003 | A1 |
20030014525 | DeLima et al. | Jan 2003 | A1 |
20030014552 | Vaitheeswaran et al. | Jan 2003 | A1 |
20030018707 | Flocken | Jan 2003 | A1 |
20030018857 | Anderson | Jan 2003 | A1 |
20030023827 | Palanca et al. | Jan 2003 | A1 |
20030028671 | Mehta et al. | Feb 2003 | A1 |
20030037148 | Pedersen | Feb 2003 | A1 |
20030037178 | Vessey et al. | Feb 2003 | A1 |
20030065711 | Acharya et al. | Apr 2003 | A1 |
20030070047 | Dwyer et al. | Apr 2003 | A1 |
20030074525 | Yamauchi et al. | Apr 2003 | A1 |
20030074580 | Knouse et al. | Apr 2003 | A1 |
20030084248 | Gaither et al. | May 2003 | A1 |
20030084251 | Gaither et al. | May 2003 | A1 |
20030088604 | Kuck et al. | May 2003 | A1 |
20030093420 | Ramme | May 2003 | A1 |
20030093487 | Czajkowski et al. | May 2003 | A1 |
20030097360 | McGuire et al. | May 2003 | A1 |
20030105887 | Cox et al. | Jun 2003 | A1 |
20030115190 | Soderstrom et al. | Jun 2003 | A1 |
20030131010 | Redpath | Jul 2003 | A1 |
20030131286 | Kaler et al. | Jul 2003 | A1 |
20030135509 | Davis et al. | Jul 2003 | A1 |
20030154239 | Davis et al. | Aug 2003 | A1 |
20030009533 | Shuster | Sep 2003 | A1 |
20030167333 | Kumar et al. | Sep 2003 | A1 |
20030177382 | Ofek et al. | Sep 2003 | A1 |
20030191795 | Bernardin et al. | Oct 2003 | A1 |
20030196136 | Haynes et al. | Oct 2003 | A1 |
20030200526 | Arcand | Oct 2003 | A1 |
20030208563 | Acree et al. | Nov 2003 | A1 |
20030212654 | Harper et al. | Nov 2003 | A1 |
20030212865 | Hicken et al. | Nov 2003 | A1 |
20030221080 | Sexton et al. | Nov 2003 | A1 |
20030229529 | Mui et al. | Dec 2003 | A1 |
20030229760 | Doyle et al. | Dec 2003 | A1 |
20030236857 | Takase et al. | Dec 2003 | A1 |
20040024610 | Fradkov et al. | Feb 2004 | A1 |
20040024971 | Bogin et al. | Feb 2004 | A1 |
20040045014 | Radhakrishnan | Mar 2004 | A1 |
20040054725 | Moller et al. | Mar 2004 | A1 |
20040054860 | Dixit et al. | Mar 2004 | A1 |
20040068554 | Bales et al. | Apr 2004 | A1 |
20040088412 | John et al. | May 2004 | A1 |
20040088495 | Glasco | May 2004 | A1 |
20040117411 | Liu et al. | Jun 2004 | A1 |
20040117441 | Liu et al. | Jun 2004 | A1 |
20040128370 | Kortright | Jul 2004 | A1 |
20040133759 | Sekiguchi et al. | Jul 2004 | A1 |
20040153509 | Alcorn et al. | Aug 2004 | A1 |
20040167980 | Doyle et al. | Aug 2004 | A1 |
20040168029 | Civlin | Aug 2004 | A1 |
20040168031 | Haskins | Aug 2004 | A1 |
20040181537 | Chawla et al. | Sep 2004 | A1 |
20040181782 | Findeisen | Sep 2004 | A1 |
20040187140 | Aigner et al. | Sep 2004 | A1 |
20040205162 | Parikh et al. | Oct 2004 | A1 |
20040205299 | Bearden | Oct 2004 | A1 |
20040215883 | Bamford et al. | Oct 2004 | A1 |
20040221261 | Blevins | Nov 2004 | A1 |
20040221285 | Donovan et al. | Nov 2004 | A1 |
20040221294 | Klamuk et al. | Nov 2004 | A1 |
20040243709 | Kalyanavarathan et al. | Dec 2004 | A1 |
20050021917 | Mathur et al. | Jan 2005 | A1 |
20050027943 | Steere et al. | Feb 2005 | A1 |
20050044301 | Vasilevsky et al. | Feb 2005 | A1 |
20050055686 | Buban et al. | Mar 2005 | A1 |
20050060383 | Lovett | Mar 2005 | A1 |
20050060704 | Bulson et al. | Mar 2005 | A1 |
20050071459 | Costa-Requena et al. | Mar 2005 | A1 |
20050086237 | Monnie et al. | Apr 2005 | A1 |
20050086656 | Whitlock et al. | Apr 2005 | A1 |
20050086661 | Monnie et al. | Apr 2005 | A1 |
20050086662 | Monnie et al. | Apr 2005 | A1 |
20050091388 | Kamboh et al. | Apr 2005 | A1 |
20050102670 | Bretl et al. | May 2005 | A1 |
20050125503 | Iyengar et al. | Jun 2005 | A1 |
20050125607 | Chefalas et al. | Jun 2005 | A1 |
20050131962 | Deshpande | Jun 2005 | A1 |
20050138193 | Encarnacion et al. | Jun 2005 | A1 |
20050154837 | Keohane et al. | Jul 2005 | A1 |
20050160396 | Chadzynski | Jul 2005 | A1 |
20050180429 | Ghahremani et al. | Aug 2005 | A1 |
20050182844 | Johnson et al. | Aug 2005 | A1 |
20050188068 | Kilian | Aug 2005 | A1 |
20050198199 | Dowling | Sep 2005 | A1 |
20050216502 | Kaura et al. | Sep 2005 | A1 |
20050238047 | Holland et al. | Oct 2005 | A1 |
20050256880 | Nam Koong et al. | Nov 2005 | A1 |
20050262181 | Schmidt et al. | Nov 2005 | A1 |
20050262493 | Schmidt et al. | Nov 2005 | A1 |
20050262512 | Schmidt et al. | Nov 2005 | A1 |
20050268294 | Petev et al. | Dec 2005 | A1 |
20050278270 | Carr et al. | Dec 2005 | A1 |
20050278278 | Petev | Dec 2005 | A1 |
20050278341 | Kostadinov et al. | Dec 2005 | A1 |
20050278346 | Shang et al. | Dec 2005 | A1 |
20050283585 | Sexton et al. | Dec 2005 | A1 |
20060026286 | Lei et al. | Feb 2006 | A1 |
20060029054 | Breh et al. | Feb 2006 | A1 |
20060036448 | Haynie et al. | Feb 2006 | A1 |
20060047974 | Alpern et al. | Mar 2006 | A1 |
20060053112 | Chitkara et al. | Mar 2006 | A1 |
20060059453 | Kuck et al. | Mar 2006 | A1 |
20060064545 | Wintergerst | Mar 2006 | A1 |
20060064549 | Wintergerst | Mar 2006 | A1 |
20060069712 | Anders et al. | Mar 2006 | A1 |
20060070051 | Kuck et al. | Mar 2006 | A1 |
20060092165 | Abdalla et al. | May 2006 | A1 |
20060094351 | Nowak et al. | May 2006 | A1 |
20060129512 | Braun | Jun 2006 | A1 |
20060129546 | Braun | Jun 2006 | A1 |
20060129981 | Dostert et al. | Jun 2006 | A1 |
20060130063 | Kilian et al. | Jun 2006 | A1 |
20060136530 | Rossmann | Jun 2006 | A1 |
20060136667 | Shultz et al. | Jun 2006 | A1 |
20060143217 | Stanev et al. | Jun 2006 | A1 |
20060143256 | Galchev et al. | Jun 2006 | A1 |
20060143328 | Fleischer et al. | Jun 2006 | A1 |
20060143360 | Petev et al. | Jun 2006 | A1 |
20060143389 | Kilian et al. | Jun 2006 | A1 |
20060143392 | Petev et al. | Jun 2006 | A1 |
20060143393 | Petev | Jun 2006 | A1 |
20060143394 | Petev et al. | Jun 2006 | A1 |
20060143427 | Marwinski et al. | Jun 2006 | A1 |
20060143608 | Dostert et al. | Jun 2006 | A1 |
20060143609 | Stanev | Jun 2006 | A1 |
20060143618 | Fleischer et al. | Jun 2006 | A1 |
20060143619 | Galchev et al. | Jun 2006 | A1 |
20060150197 | Werner | Jul 2006 | A1 |
20060155756 | Stanev | Jul 2006 | A1 |
20060155867 | Kilian et al. | Jul 2006 | A1 |
20060159197 | Kraut et al. | Jul 2006 | A1 |
20060167980 | Werner | Jul 2006 | A1 |
20060168646 | Werner | Jul 2006 | A1 |
20060168846 | Juan | Aug 2006 | A1 |
20060193318 | Narasimhan et al. | Aug 2006 | A1 |
20060206856 | Breeden et al. | Sep 2006 | A1 |
20060212852 | Hwang | Sep 2006 | A1 |
20060235810 | Wen et al. | Oct 2006 | A1 |
20060236306 | DeBruin et al. | Oct 2006 | A1 |
20060248036 | Stanev et al. | Nov 2006 | A1 |
20060248119 | Stanev et al. | Nov 2006 | A1 |
20060248131 | Marwinski et al. | Nov 2006 | A1 |
20060248140 | Birenheide | Nov 2006 | A1 |
20060248177 | Dostert et al. | Nov 2006 | A1 |
20060248198 | Galchev | Nov 2006 | A1 |
20060248199 | Stanev | Nov 2006 | A1 |
20060248200 | Stanev | Nov 2006 | A1 |
20060248234 | Pope et al. | Nov 2006 | A1 |
20060248283 | Galchev et al. | Nov 2006 | A1 |
20060248284 | Petev | Nov 2006 | A1 |
20060248350 | Stanev | Nov 2006 | A1 |
20060253558 | Acree et al. | Nov 2006 | A1 |
20060271586 | Federighi et al. | Nov 2006 | A1 |
20060274064 | Dougherty et al. | Dec 2006 | A1 |
20060282509 | Kilian et al. | Dec 2006 | A1 |
20060294253 | Linderman | Dec 2006 | A1 |
20070027877 | Droshev et al. | Feb 2007 | A1 |
20070050768 | Brown et al. | Mar 2007 | A1 |
20070055781 | Fleischer et al. | Mar 2007 | A1 |
20070067469 | Luik et al. | Mar 2007 | A1 |
20070118538 | Ahern et al. | May 2007 | A1 |
20070150586 | Kilian et al. | Jun 2007 | A1 |
20070156869 | Galchev et al. | Jul 2007 | A1 |
20070156907 | Galchev et al. | Jul 2007 | A1 |
20070226683 | Stoodley et al. | Sep 2007 | A1 |
20070245167 | De La Cruz et al. | Oct 2007 | A1 |
20070250779 | Wallach et al. | Oct 2007 | A1 |
20070255722 | Leffert et al. | Nov 2007 | A1 |
20070261043 | Ho et al. | Nov 2007 | A1 |
20070266305 | Cong et al. | Nov 2007 | A1 |
20080086564 | Putman et al. | Apr 2008 | A1 |
20080162547 | Bonev | Jul 2008 | A1 |
20080162552 | Bonev et al. | Jul 2008 | A1 |
20080163063 | Bonev et al. | Jul 2008 | A1 |
20080163124 | Bonev | Jul 2008 | A1 |
20080201417 | McCain et al. | Aug 2008 | A1 |
20080222270 | Gilbert | Sep 2008 | A1 |
20090282196 | Petev et al. | Nov 2009 | A1 |
20100268881 | Galchev et al. | Oct 2010 | A1 |
20140156938 | Galchev et al. | Jun 2014 | A1 |
Number | Date | Country |
---|---|---|
0459931 | Dec 1991 | EP |
1027796 | Aug 2000 | EP |
1380941 | Jan 2004 | EP |
1387262 | Feb 2004 | EP |
WO-0023898 | Apr 2000 | WO |
WO-0142908 | Jun 2001 | WO |
WO-03073204 | Sep 2003 | WO |
WO-2004038586 | May 2004 | WO |
Entry |
---|
“U.S. Appl. No. 10/749,617, Non-Final Office Action dated Apr. 9, 2008”, 12 pgs. |
“U.S. Appl. No. 10/864,185, Final Office Action dated Mar. 17, 2008”, 15 pgs. |
“U.S. Appl. No. 10/949,541, Non Final Office Action dated May 30, 2008”, 18 pgs. |
“U.S. Appl. No. 11/012,803, Final Office Action dated Aug. 28, 2007”, 15 pgs. |
“U.S. Appl. No. 11/012,803, Non Final Office Action dated Jan. 24, 2008”, 13 pgs. |
“U.S. Appl. No. 11/012,803, Non Final Office Action dated Mar. 16, 2007”, 14 pgs. |
“U.S. Appl. No. 11/012,803, Non Final Office Action dated Dec. 23, 2008”, 19 pgs. |
“U.S. Appl. No. 11/013,277, Final Office Action dated Aug. 17, 2007”, 14 pgs. |
“U.S. Appl. No. 11/013,277, Non Final Office Action dated Jan. 7, 2008”, 16 pgs. |
“U.S. Appl. No. 11/013,277, Non Final Office Action dated Mar. 12, 2007”, 13 pgs. |
“U.S. Appl. No. 11/024,391, Non Final Office Action dated Jun. 27, 2008”, 7 pgs. |
“U.S. Appl. No. 11/024,392, Final Office Action dated Sep. 17, 2008”, 13 pgs. |
“U.S. Appl. No. 11/024,392, Non Final Office Action dated Apr. 4, 2008”, 8 pgs. |
“U.S. Appl. No. 11/024,393, Final Office Action dated Aug. 6, 2008”, 10 pgs. |
“U.S. Appl. No. 11/024,393, Non Final Office Action dated Jan. 24, 2008”, 7 pgs. |
“U.S. Appl. No. 11/024,524 Final Office Action dated Aug. 19, 2010”, 22 pgs. |
“U.S. Appl. No. 11/024,524, Advisory Action dated Jul. 9, 2009”, 3 pgs. |
“U.S. Appl. No. 11/024,524, Final Office Action dated Apr. 21, 2008”, 23 pgs. |
“U.S. Appl. No. 11/024,524, Final Office Action dated Apr. 27, 2009”, 20 pgs. |
“U.S. Appl. No. 11/024,524, Final Office Action dated Jun. 15, 2007”, 20 pgs. |
“U.S. Appl. No. 11/024,524, Non Final Office Action dated Aug. 6, 2009”, 22 pgs. |
“U.S. Appl. No. 11/024,524, Non Final Office Action dated Oct. 22, 2007”, 13 pgs. |
“U.S. Appl. No. 11/024,524, Non Final Office Action dated Nov. 12, 2008”, 28 pgs. |
“U.S. Appl. No. 11/024,524, Non Final Office Action dated Dec. 18, 2006”, 18 pgs. |
“U.S. Appl. No. 11/024,524, Non-Final Office Action dated Mar. 2, 2010”, 19 pgs. |
“U.S. Appl. No. 11/024,524, Notice of Allowance dated Feb. 14, 2011”, 9 pgs. |
“U.S. Appl. No. 11/024,524, Notice of Allowance dated Mar. 18, 2011”, 9 pgs. |
“U.S. Appl. No. 11/024,524, Response filed Jan. 22, 2008 to Non Final Office Action dated Oct. 22, 2007”, 12 pgs. |
“U.S. Appl. No. 11/024,524, Response filed Feb. 12, 2009 to Non Final Office Action dated Nov. 12, 2008”, 12 pgs. |
“U.S. Appl. No. 11/024,524, Response filed Mar. 19, 2007 to Non Final Office Action dated Dec. 18, 2006”, 13 pgs. |
“U.S. Appl. No. 11/024,524, Response filed May 26, 2010 to Non Final Office Action dated Mar. 2, 2010”, 9 pgs. |
“U.S. Appl. No. 11/024,524, Response filed Jun. 17, 2009 to Final Office Action dated Apr. 27, 2009”, 13 pgs. |
“U.S. Appl. No. 11/024,524, Response filed Sep. 14, 2007 to Final Office Action dated Jun. 15, 2007”, 12 pgs. |
“U.S. Appl. No. 11/024,524, Response filed Oct. 21, 2008 to Final Office Action dated Apr. 21, 2008”, 13 pgs. |
“U.S. Appl. No. 11/024,524, Response filed Oct. 29, 2009 to Non Final Office Action dated Aug. 6, 2009”, 10 pgs. |
“U.S. Appl. No. 11/024,546, Final Office Action dated Oct. 3, 2007”, 14 pgs. |
“U.S. Appl. No. 11/024,546, Non Final Office Action dated Mar. 17, 2008”, 15 pgs. |
“U.S. Appl. No. 11/024,546, Non Final Office Action dated Apr. 4, 2007”, 19 pgs. |
“U.S. Appl. No. 11/024,546, Notice of Allowance dated Mar. 16, 2009”, 4 pgs. |
“U.S. Appl. No. 11/024,546, Notice of Allowance dated Nov. 4, 2008”, 10 pgs. |
“U.S. Appl. No. 11/024,546, Response filed Jan. 3, 2008 to Final Office Action dated Oct. 3, 2007”, 19 pgs. |
“U.S. Appl. No. 11/024,546, Response filed Jul. 6, 2007 to Non Final Office Action dated Apr. 6, 2007”, 15 pgs. |
“U.S. Appl. No. 11/024,546, Response filed Sep. 16, 2008 to Non Final Office Action dated Mar. 17, 2008”, 20 pgs. |
“U.S. Appl. No. 11/024,554, Advisory Action dated Mar. 4, 2009”, 3 pgs. |
“U.S. Appl. No. 11/024,554, Examiner Interview Summary dated Sep. 17, 2009”, 2 pgs. |
“U.S. Appl. No. 11/024,554, Final Office Action dated Jan. 7, 2010”, 12 pgs. |
“U.S. Appl. No. 11/024,554, Final Office Action dated Oct. 29, 2007”, 8 pgs. |
“U.S. Appl. No. 11/024,554, Final Office Action dated Nov. 26, 2008”, 11 pgs. |
“U.S. Appl. No. 11/024,554, Non Final Office Action dated Apr. 26, 2007”, 9 pgs. |
“U.S. Appl. No. 11/024,554, Non Final Office Action dated May 28, 2008”, 7 pgs. |
“U.S. Appl. No. 11/024,554, Non Final Office Action dated Jun. 12, 2009”, 12 pgs. |
“U.S. Appl. No. 11/024,554, Preliminary Amendment filed Mar. 16, 2009”, 12 pgs. |
“U.S. Appl. No. 11/024,554, Response filed Feb. 19, 2009 to Final Office Action dated Nov. 26, 2008”, 5 pgs. |
“U.S. Appl. No. 11/024,554, Response filed Feb. 29, 2008 to Final Office Action dated Oct. 29, 2007”, 14 pgs. |
“U.S. Appl. No. 11/024,554, Response filed Apr. 5, 2010 to Final Office Action dated Jan. 7, 2010”, 9 pgs. |
“U.S. Appl. No. 11/024,554, Response filed Jul. 26, 2007 to Non Final Office Action dated Apr. 26, 2007”, 14 pgs. |
“U.S. Appl. No. 11/024,554, Response filed Jul. 31, 2008 to Non Final Office Action dated May 28, 2008”, 11 pgs. |
“U.S. Appl. No. 11/024,554, Response filed Sep. 11, 2009 to Non Final Office Action dated Jun. 12, 2009”, 10 pgs. |
“U.S. Appl. No. 11/024,565, Final Office Action dated Jun. 12, 2007”, 18 pgs. |
“U.S. Appl. No. 11/024,565, Non Final Office Action dated Jun. 19, 2008”, 20 pgs. |
“U.S. Appl. No. 11/024,565, Non Final Office Action dated Oct. 25, 2007”, 15 pgs. |
“U.S. Appl. No. 11/024,565, Non Final Office Action dated Dec. 18, 2006”, 18 pgs. |
“U.S. Appl. No. 11/024,565, Notice of Allowance dated Feb. 20, 2009”, 8 pgs. |
“U.S. Appl. No. 11/024,565, Response filed Jan. 25, 2008 to Non Final Office Action dated Oct. 25, 2007”, 17 pgs. |
“U.S. Appl. No. 11/024,565, Response filed Mar. 19, 2007 to Non Final Office Action dated Dec. 18, 2006”, 13 pgs. |
“U.S. Appl. No. 11/024,565, Response filed Jul. 26, 2007 to Final Office Action dated Jun. 12, 2007”, 14 pgs. |
“U.S. Appl. No. 11/024,565, Response filed Sep. 19, 2008 to Non Final Office Action dated Jun. 19, 2008”, 10 pgs. |
“U.S. Appl. No. 11/024,591, Final Office Action dated Oct. 10, 2007”, 14 pgs. |
“U.S. Appl. No. 11/024,591, Non Final Office Action dated Mar. 11, 2008”, 12 pgs. |
“U.S. Appl. No. 11/024,591, Non Final Office Action dated Apr. 13, 2007”, 18 pgs. |
“U.S. Appl. No. 11/024,591, Notice of Allowance dated Aug. 21, 2008”, 6 pgs. |
“U.S. Appl. No. 11/024,591, Notice of Allowance dated Nov. 19, 2008”, 7 pgs. |
“U.S. Appl. No. 11/024,591, Response filed Jan. 10, 2008 to Final Office Action dated Oct. 10, 2007”, 19 pgs. |
“U.S. Appl. No. 11/024,591, Response filed Jun. 4, 2008 to Non Final Office Action dated Mar. 11, 2008”, 4 pgs. |
“U.S. Appl. No. 11/024,591, Response filed Jul. 6, 2007 to Non Final Office Action dated Apr. 13, 2007”, 15 pgs. |
“U.S. Appl. No. 11/024,613, Notice of Allowance dated Dec. 31, 2007”, 2 pgs. |
“U.S. Appl. No. 11/024,614, Non Final Office Action dated Aug. 27, 2007”, 9 pgs. |
“U.S. Appl. No. 11/024,651, Final Office Action dated Oct. 9, 2007”, 9 pgs. |
“U.S. Appl. No. 11/024,651, Non Final Office Action dated Mar. 14, 2008”, 9 pgs. |
“U.S. Appl. No. 11/024,651, Notice of Allowance dated Jul. 28, 2008”, 7 pgs. |
“U.S. Appl. No. 11/025,178, Final Office Action dated Feb. 20, 2008”, 17 pgs. |
“U.S. Appl. No. 11/025,178, Notice of Allowance dated Jun. 9, 2008”, 7 pgs. |
“U.S. Appl. No. 11/025,178, Notice of Allowance dated Aug. 10, 2007”, 7 pgs. |
“U.S. Appl. No. 11/025,200, Examiner Interview Summary dated Mar. 20, 2009”, 3 pgs. |
“U.S. Appl. No. 11/025,200, Non Final Office Action dated Mar. 24, 2009”, 12 pgs. |
“U.S. Appl. No. 11/025,200, Preliminary Amendment filed Mar. 21, 2005”, 4 pgs. |
“U.S. Appl. No. 11/025,200, Response filed Jun. 24, 2009 to Non Final Office Action dated Mar. 24, 2009”, 14 pgs. |
“U.S. Appl. No. 11/025,316, Non-Final Office Action dated Jul. 21, 2009”, 9 pgs. |
“U.S. Appl. No. 11/025,378, Final Office Action dated Aug. 14, 2008”, 14 pgs. |
“U.S. Appl. No. 11/025,378, Non Final Office Action dated Mar. 31, 2008”, 16 pgs. |
“U.S. Appl. No. 11/025,482, Final Office Action dated Jul. 10, 2007”, 16 pgs. |
“U.S. Appl. No. 11/025,482, Non Final Office Action dated May 12, 2009”, 16 pgs. |
“U.S. Appl. No. 11/025,482, Non Final Office Action dated Oct. 29, 2008”, 13 pgs. |
“U.S. Appl. No. 11/025,549, Non-Final Office Action dated Mar. 24, 2009”, 13 pgs. |
“U.S. Appl. No. 11/025,549, Preliminary Amendment filed Mar. 22, 2005”, 4 pgs. |
“U.S. Appl. No. 11/025,549, Response filed Jun. 24, 2009 to Non Final Office Action dated Mar. 24, 2009”, 9 pgs. |
“U.S. Appl. No. 11/025,714, Corrected Notice of Allowance dated Jun. 19, 2009”, 4 pgs. |
“U.S. Appl. No. 11/025,714, Notice of Allowance dated Jan. 29, 2010”, 7 pgs. |
“U.S. Appl. No. 11/025,714, Notice of Allowance dated Jun. 9, 2009”, 10 pgs. |
“U.S. Appl. No. 11/025,714, Notice of Allowance dated Sep. 28, 2009”, 7 pgs. |
“U.S. Appl. No. 11/025,764, Notice of Allowance dated Feb. 13, 2007”, 3 pgs. |
“U.S. Appl. No. 11/025,764, Notice of Allowance dated Apr. 18, 2008”, 6 pgs. |
“U.S. Appl. No. 11/025,764, Notice of Allowance dated Aug. 20, 2007”, 3 pgs. |
“U.S. Appl. No. 11/025,764, Preliminary Amendment filed Apr. 11, 2005”, 5 pgs. |
“U.S. Appl. No. 11/025,764. Applicant's Comments filed May 14, 2007 Concerning Notice of Allowance dated Feb. 13, 2007”, 8 pgs. |
“U.S. Appl. No. 11/117,876, Final Office Action dated Jan. 27, 2009”, 8 pgs. |
“U.S. Appl. No. 11/118,018, Non-Final Office Action dated Mar. 20, 2009”, 13 pgs. |
“U.S. Appl. No. 11/118,018, Response filed Jun. 19, 2009 to Non Final Office Action dated Mar. 20, 2009”, 14 pgs. |
“U.S. Appl. No. 11/118,019, Non Final Office Action dated Nov. 13, 2008”, 9 pgs. |
“U.S. Appl. No. 11/118,020, Response filed May 26, 2009 to Non Final Office Action dated Feb. 24, 2009”, 12 pgs. |
“U.S. Appl. No. 11/118,259, Final Office Action dated Dec. 11, 2007”, 13 pgs. |
“U.S. Appl. No. 11/118,259, Non Final Office Action dated Apr. 4, 2008”, 11 pgs. |
“U.S. Appl. No. 11/118,259, Non Final Office Action dated Jun. 11, 2007”, 13 pgs. |
“U.S. Appl. No. 11/118,890, Advisory Action dated Sep. 14, 2009”, 3 pgs. |
“U.S. Appl. No. 11/118,890, Final Office Action dated May 6, 2009”, 10 pgs. |
“U.S. Appl. No. 11/118,890, Non Final Office Action dated Sep. 18, 2008”, 8 pgs. |
“U.S. Appl. No. 11/118,890, Non-Final Office Action dated Dec. 24, 2009”, 10 pgs. |
“U.S. Appl. No. 11/118,890, Response filed Jan. 20, 2009 to Non Final Office Action dated Sep. 18, 2008”, 18 pgs. |
“U.S. Appl. No. 11/118,890, Response filed Sep. 2, 2009 to Final Office Action dated May 6, 2009”, 11 pgs. |
“U.S. Appl. No. 11/118,976, Advisory Action dated Mar. 30, 2009”, 3 pgs. |
“U.S. Appl. No. 11/118,976, Final Office Action dated Feb. 3, 2009”, 17 pgs. |
“U.S. Appl. No. 11/118,976, Final Office Action dated Feb. 21, 2008”, 15 pgs. |
“U.S. Appl. No. 11/118,976, Non Final Office Action dated Aug. 21, 2008”, 17 pgs. |
“U.S. Appl. No. 11/118,976, Non Final Office Action dated Aug. 31, 2007”, 14 pgs. |
“U.S. Appl. No. 11/118,976, Non-Final Office Action dated Jun. 11, 2009”, 22 pgs. |
“U.S. Appl. No. 11/118,976, Response filed May 21, 2008 to Final Office Action dated Feb. 21, 2008”, 11 pgs. |
“U.S. Appl. No. 11/118,976, Response filed Nov. 21, 2008 to Non Final Office Action dated Aug. 21, 2008”, 13 pgs. |
“U.S. Appl. No. 11/118,976, Response filed Nov. 30, 2007 to Non Final Office Action dated Aug. 31, 2007”, 13 pgs. |
“U.S. Appl. No. 11/119,084, Non Final Office Action dated Oct. 6, 2008”, 9 pgs. |
“U.S. Appl. No. 11/185,199, Final Office Action dated Feb. 22, 2010”, 18 pgs. |
“U.S. Appl. No. 11/185,199, Final Office Action dated Mar. 18, 2008”, 13 pgs. |
“U.S. Appl. No. 11/185,199, Final Office Action dated Mar. 19, 2009”, 15 pgs. |
“U.S. Appl. No. 11/185,199, Non Final Office Action dated Sep. 11, 2008”, 12 pgs. |
“U.S. Appl. No. 11/185,199, Non Final Office Action dated Sep. 18, 2007”, 12 pgs. |
“U.S. Appl. No. 11/185,199, Non-Final Office Action dated Jun. 22, 2009”, 19 pgs. |
“U.S. Appl. No. 11/185,199, Non-Final Office Action dated Aug. 30, 2010”, 16 pgs. |
“U.S. Appl. No. 11/185,199, Pre-Appeal Brief Request dated Apr. 20, 2010”, 5 pgs. |
“U.S. Appl. No. 11/185,199, Response filed Jan. 12, 2009 to Non Final Office Action dated Sep. 11, 2008”, 19 pgs. |
“U.S. Appl. No. 11/185,199, Response filed Jun. 8, 2009 to Final Office Action dated Mar. 19, 2009”, 13 pgs. |
“U.S. Appl. No. 11/185,199, Response filed Jun. 10, 2008 to Final Office Action dated Mar. 18, 2008”, 20 pgs. |
“U.S. Appl. No. 11/185,199, Response filed Nov. 18, 2009 to non Final Office Action dated Jun. 22, 2009”, 16 pgs. |
“U.S. Appl. No. 11/185,199, Response filed Dec. 18, 2007 to Non Final Office Action dated Sep. 18, 2007”, 17 pgs. |
“U.S. Appl. No. 11/647,957, Final Office Action dated Jun. 30, 2009”, 12 pgs. |
“U.S. Appl. No. 11/647,979, Final Office Action dated Jul. 8, 2009”, 11 pgs. |
“U.S. Appl. No. 11/647,979, Final Office Action dated Oct. 2, 2009”, 11 pgs. |
“U.S. Appl. No. 11/647,979, Non Final Office Action dated Feb. 19, 2009”, 7 pgs. |
“U.S. Appl. No. 11/647,979, Non-Final Office Action dated Feb. 2, 2010”, 9 pgs. |
“U.S. Appl. No. 11/647,979, Response filed Apr. 8, 2009 to Non Final Office Action dated Feb. 19, 2009”, 14 pgs. |
“U.S. Appl. No. 11/647,979, Response filed Sep. 9, 2009 to Final Office Action dated Jul. 8, 2009”, 12 pgs. |
“U.S. Appl. No. 11/647,979, Response filed Dec. 22, 2009 to Final Office Action dated Oct. 2, 2009”, 15 pgs. |
“U.S. Appl. No. 11/647,982, Final Office Action dated Jun. 29, 2009”, 9 pgs. |
“U.S. Appl. No. 12/472,256 Notice of Allowance dated Oct. 4, 2010”, 8 pgs. |
“U.S. Appl. No. 12/472,256, Non-Final Office Action dated Jul. 9, 2010”, 19 pgs. |
“U.S. Appl. No. 12/472,256, Preliminary Amendment filed May 26, 2009”, 3 pgs. |
“U.S. Appl. No. 12/472,256, Response filed Aug. 20, 2010 to Non Final Office Action dated Jul. 9, 2010”, 14 pgs. |
“U.S. Appl. No. 12/831,918, Non-Final Office Action dated Sep. 20, 2010”, 19 pgs. |
“U.S. Appl. No. 12/831,918, Notice of Allowance dated Apr. 4, 2011”, 10 pgs. |
“U.S. Appl. No. 12/831,918, Response filed Dec. 20, 2010 to Non Final Office Action dated Sep. 20, 2010”, 13 pgs. |
“U.S. Appl. No. 12/831,918, Supplemental Notice of Allowability dated May 19, 2011”, 4 pgs. |
“U.S. Appl. No. 13/181,299, Non Final Office Action dated Jul. 31, 2014”, 8 pgs. |
“U.S. Appl. No. 13/181,299, Notice of Allowance dated Dec. 10, 2014”, 8 pgs. |
“U.S. Appl. No. 13/181,299, Response filed Oct. 30, 2014 to Non Final Office Action dated Jul. 31, 2014”, 9 pgs. |
“U.S. Appl. No. 13/181,299, Supplemental Notice of Allowability dated Feb. 4, 2015”, 3 pgs. |
“Caching with IBM WebSphereMQ”, spiritcache, Use Case & Code Example, Article, (Nov. 19, 2004), 9 pgs. |
“Class Abstract Cache Administrator”, [Online]. Retrieved from the Internet: <URL: http://www.jdocs.com/osche/2.0.2/api/com/opensymphony/oscache/base/AbstractCache>, (Jan. 2004), 11 pgs. |
“Class Cache”, [Online]. Retrieved from the Internet: <URL: http://www.jdocs.com/osche/2.0.2/api/com/opensymphony/oscache/base/Cache.html>, (Jan. 2004), 16 pgs. |
“Class CacheEntry”, [Online]. Retrieved from the Internet: <URL: http://www.jdocs.com/osche/2.0.2/api/com/opensymphony/oscache/base/CacheEntry.html>, (Jan. 2004), 8 pgs. |
“Class Config”, [Online]. Retrieved from the Internet: <URL: http://www.jdocs.com/osche/2.0.2/api/com/opensymphony/oscache/base/Config.html>, (Jan. 2004), 4 pgs. |
“Concurrent Programming in Java”, SC2Bh: Stark 2002/Langley 2004, (Jan. 3, 2002), 1-5. |
“European Application Serial No. 05027361, Extended European Search Report dated Apr. 5, 2006”, 7 pgs. |
“European Application Serial No. 05028446.2, European Search Report dated Dec. 20, 2007”, 6 pgs. |
“Failover for Clustered RMI-P4 Remote Objects”, SAP Library, http://help.sap.com/saphelp_nw04/helpdata/en/f6/4ef11ab3a52f408aa8a133f33d6cf1/cont, (Nov. 2004), 3 pgs. |
“Failover for Enterprise Beans”, SAP Library http://help.sap.com/saphelp_nw04/helpdata/en/8f/d6e45953a494499ea1b79ab16321d2/cont, (Nov. 2004), 3 pgs. |
“Failover System”, SAP Library, http://help.sap.com/saphelp_nw04/helpdata/en/d7/57af0cce55143be5de3a6e4911186.cont, (Nov. 2004), 2 pgs. |
“Hierarchy for Package Oracle.ias.cache”, [Online]. Retrieved from the Internet: <URL: http://download-west.oracle.com/docs/cd/B15904_01/web.1012/b14018/oracle/ias/cache/p>, (Nov. 2004), 2 pgs. |
“High Availability and Failover”, [Online]. Retrieved from the Internet: <URL: http://help.sap.com/saphelp_nw04/helpdata/en/6c/209da105668c45be12f1d9cc412e2b/cont>, (Nov. 2004), 2 pgs. |
“Http Sessions and Failover of Web Application”, SAP Library, http://help.sap.com/saphelp_nw04/helpdata/en/90/044cc585eaba42b649f16181b0fdf.cont., (Nov. 2004), 1 pg. |
“International Application Serial No. PCT/EP2006/012420, International Search Report and Written Opinion dated May 7, 2007”, 13 pgs. |
“International Application Serial No. PCT/EP2007/010882, International Search Report & Written Opinion dated Jul. 5, 2008”, 10 pgs. |
“International Application Serial No. PCT/EP2007/010883, International Search Report dated May 6, 2008”, 4 pgs. |
“International Application Serial No. PCT/EP2007/010883, Written Opinion dated May 6, 2008”, 6 pgs. |
“International Application Serial No. PCT/EP2007/010886, International Search Report dated May 16, 2008”, 4 pgs. |
“International Application Serial No. PCT/EP2007/010886, Written Opinion dated May 16, 2008”, 6 pgs. |
“Introducing Cache-Forward Architecture”, ObjectStore, paper, (Jan. 1, 2004), 23 pgs. |
“Java Caching System Coming of Jakarta Commons”, Java VineetB-log.java, [Online]. Retrieved from the Internet: <URL: http://homepage.mac.com/vineetb/iblog/C684524823>, (Dec. 18, 2003), 1 pg. |
“Java Technology in SAP Web Application Server”, SAP Library, http://help.sap.com/saphelp_nw04/helpdata/en0d/a3bbeff62847ae10000000a114084/cont, (Nov. 2004), 3 pgs. |
“JCS Plugin Overview”, [Online]. Retrieved from the Internet: <URL: http://jakarta.apache.org/jcs/Plugins.html>, (Jul. 2004), 2 pgs. |
“JSR 107: JCACHE—Java Temporary Caching API”, [Online]. Retrieved from the Internet: <URL: Website, http://web1.jcp.org/en/jsr/detail?id=107>, (Nov. 28, 2004), 4 pgs. |
“Load Balancing of the SAP Web as for Java Applications”, SAP Library, http://help.sap.com/saphelp_nw04/helpdata/en/b5/e8239ef7bd494f896a84625d4b688f/cont, (Nov. 2004), 2 pgs. |
“Open Source Cache Solutions in Java”, [Online]. Retrieved from the Internet: <URL: http://java-source.net/open-source/cache-solutions>, (Nov. 2004), 3 pgs. |
“Oracle Application Server 10g Release 2 (10.1.2)”, Oracle, (Nov. 2004), 24 pgs. |
“OSCache”, [Online]. Retrieved from the Internet: <URL: http://www.opensymphony.com/oscache>, (Nov. 2004), 1 pg. |
“OSCache 2.0.2—All Classes”, [Online]. Retrieved from the Internet: <URL: http://www.jdocs.com/osche/2.0.2/api/com/opensymphony/oscache/base/overview-frame.html>, (Jan. 2004), 1 pg. |
“OSCache 2.0.2—All Classes: Packages”, [Online]. Retrieved from the Internet: <URL: http://www.jdocs.com/oscache/2.0.2/api/overview-frame.html>, (Jan. 2004), 1 pg. |
“OSCache, V 2.0.2 API Specification”, [Online]. Retrieved from the Internet: <URL: http://www.jdocs.com/osche/2.0.2/api/com/opensymphony/oscache/base/overview-sum.html>, (Jan. 2004), 2 pgs. |
“RMI Clients on SAP NetWeaver”, SAP Platform Ecosystem, (2005), 12 pgs. |
“SAP Beefs Up Java Support Capabilities for New NetWeaver”, News Story (Computerworld)., [Online]. Retreived from the Internet: <URL: http://www.computerworld.com/printthis/2004/0,4814,96558,00.html>, (Oct. 11, 2004), 2 pgs. |
“SAP NetWeaver Makes Standard Java Robust”, [Online]. Retreived from the Internet: <URL: http://www.sap.com/company/press/press.epx?pageview=print&pressid=3069>, (Oct. 5, 2004), 2 pgs. |
“SAP Presents New Capabilities for NetWeaver”, InfoWorld,, [Online]. Retreived from the Internet: <URL: http://www.infoworld.com/article/04/10/06/HNsapnetweaver_1.html>, (Oct. 6, 2004), 5 pgs. |
“SAP Web Application Server Security Guide”, Version 1.00, (Apr. 29, 2004), 5 pgs. |
“Shared Disk I/O Cache”, I.P.Com Journal, IP.Com, Inc. West Henrietta, NY, US, XP013014199, (Jan. 29, 2004), 6 pgs. |
“Spiritcache”, [Online]. Retrieved from the Internet: <URL: http://www.spirit-soft.com/index.do?id=30>, (Nov. 2004), 1 pg. |
“System and Method for Shared Memory/File System Java ObjectGroup Clustered JVM”, [Online]. Retreived from the Internet: <URL: http://www/priorartdatabase.com/IPCOM/000021597/>, (Jan. 2004), 2 pgs. |
“Torque Managers and Caching”, [Online]. Retrieved from the Internet: <URL: http://db.apache.org/torque-32/managers-cache.html>, (Apr. 11, 2002), 4 pgs. |
“turbine-jcs-dev”, [Online]. Retrieved from the Internet: <URL: http://www.mail-archive.com/turbine-jcs-dev@jakarta.apache.org/msg00647.html>, (Jul. 13, 2004), 3 pgs. |
“Using Rules-Based Object Caching”, White Paper: spiritsoft/spiritcache 4.0, (2004), 8 pgs. |
“WebLogic RMI Features and Guidelines”, eDocs, http://e-docs.bea.com/wls/docs90/rmi/rmi_api.html, (Nov. 2004), 7 pgs. |
“What is LDAP?”, [Online]. Retrieved from the Internet: <URL: http://www.gracion.com/server/whatldap.html>, (Dec. 7, 2004), 2 pgs. |
Barker, et al., “A load balancing framework for adaptive and asynchronous applications”, Parallet and Distributed Systems, IEEE Transactions on vol. 15, Issue 2, (Feb. 2004), 183-192. |
Barrett, Ryan, “P4 Protocol Specification”, [Online]. Retrieved from the Internet: <URL: http://ryan.barrett.name/p4/doc/html/protocol.html>, (Sep. 2001), 12 pgs. |
Bortvedt, Jerry, “Functional Specification for Object Caching Service for Java (OCS4J)”, 2.0, 1-27. |
Bryce, Ciaran, “Isolates: A New Approach to Multi-Programming in Java Platforms”, LogOn Technology Transfer, Kronerg, Germany, Experts' Corner, (May 2004), 7 pgs. |
Casavant, T. L., et al., “A Taxonomy of Scheduling in General-Purpose Distributed Computing Systems”, IEEE 14(2), XP000039761, (1998), 141-154. |
Cheng, Kai, et al., “LRU-SP: A size-adjusted and popularity-aware LRU replacement algorithm for web caching”, IEEE, (Oct. 2000), 6 pgs. |
Conte, Thomas, “Implementing OSCache”, [Online]. Retrieved from the Internet: <URL: http://www.pas.net/tom/articles/oscache/en/>, (Jun. 2002), 4 pgs. |
Czajkowski, Grzegorz, et al., “A Multi-User Virtual Machine”, Paper, Sun Microsystems Laboratories and S3 Lab, Purdue University, West Lafayette, IN, (2003), 14 pgs. |
Czajkowski, Grzegorz, “Multitasking without Compromise: A Virtual Machine Evolution”, Paper, Sun Microsystems Laboratories, (2001), 14 pgs. |
Dandamudi, S. P., “Reducing Run Queue Contention in Shared Memory Multiprocessors”, IEEE, XP000657329, (1997), 82-89. |
Davies, Robert, “Data Caching: A Prerequisite to the Enterprise Service Bus”, Business Integration Journal, (Oct. 2003), 4 pgs. |
De Pauw, W, et al., “Web Services Navigator: Visualizing the Execution of Web Services”, IBM Systems Journal, vol. 44, No. 4, (2005), 821-845. |
De Pauw, Wim, et al., “Visualizing the Execution of Java Programs”, Software Visualization, International Seminar, Revised Papers, Lecture Notes in Computer Science, vol. 2269, XP002477230, ISBN: 3-540-43323-6, (2002), 151-162. |
Dillenbeger, D., et al., “Building a Java Virtual Machine for Serve Applications: The JVM on OS/390”, IBM Systems Journal, vol. 30, No. 1, (2000), 17 pgs. |
Doyle, Patrick, et al., “A Modular and Extensible JVM Infrastructure”, Paper, Edward S. Rogers Sr. Department of Electrical and Computer Engineering, University of Toronto, Toronto, Ontario, Canada, (Jul. 2002), 14 pgs. |
Dwarkadas, Sandhya, et al., “Cashmere-VLM: Remote Memory Paging for Software Distributed Shared Memory”, Paper, Compaq Cambridge Research Lab, Cambridge, MA and Department of Computer Science, University of Rochester, Rochester, NY, (Apr. 1999), 7 pgs. |
Ferguson, Renee B., “SAP Preps New NetWeaver Capabilities”, eWeek.com, [Online]. Retrieved from the Internet: <URL: http://www.eweek.com/article2/0,1759,1668146,00.asp>, (Oct. 7, 2004), 6 pgs. |
Gilberg, R. F., “Data Structures: A Pseudocode Approach with C”, Thomson Course Technology 310340, XP002477259, (May 31, 2006), 488-491. |
Gontmakher, Alex, et al., “Characterizations for Java Memory Behavior”, Paper, Computer Science Department, Technion, (1997), 5 pgs. |
Handy, Jim, “How are Caches Designed?”, The Cache Memory Book, Academic Press Inc, 2nd Edition, (1998), p. 60. |
Hennessy, et al., “Computer Organization and Design The Hardware/Software Interface”, Morgan Kaufmann Publishers, Inc., (1998), 606. |
Hennessy, John, et al., “Computer Organization and Design”, Morgan Kaufmann Publishers Inc., 2nd Edition, (1998), 575-576. |
Horton, Ivor, “Beginning Java 2”, WROX Press, (1999), 36, 40, 58, 66. |
Jagannathan, Suresh, et al., “High-Level Abstractions for Efficient Concurrent Systems”, NEC Research Institute, Section 5.2, (Mar. 1994), 20 pgs. |
Jordan, Mick, et al., “Extending a J2EE Server with Dynamic and Flexible Resource Management”, Paper, Sun Microsystems, Inc, and School of Computer Science, University of Waterloo, Waterloo, ON, Canada, http://delivery.acm.org/1 0.1145/1 050000/1 045689/p439-jordan. pdf, (Oct. 2004), 439-458. |
Jordan, Mick, et al., “Scaling J2EE Application Servers with the Multi-Tasking Virtual Machine”, Paper, Sun Microsystems, SMLI TR-2004-135, (Jun. 2004), 1-19. |
Karedia, Ramakrishna, et al., “Caching strategies to improve disk system performance”, vol. 27, Issue 3, IEEE, (Mar. 1993), 9 pgs. |
Kaushik, Dutta, et al., “ReDAL: An Efficient and Practical Request Distribution Technique for the Application Layer”, Internet Article, Singapore Management University, [Online]. Retrieved from the Internet: <URL: http://www.sis.smu.edu.sg/Research/diagram/kaushik_dutta_paper.pdf>, (Nov. 11, 2005), 1-30. |
Keahey, K., “A Brief Tutorial on CORBA”, [Online]. Retrieved from the Internet: <URL: http://www.cs.indiana.edu/˜kksiazek/tuto.html>, 5 pgs. |
Kirby, Graham, et al., “OCB: An Object/Class Browser for Java”, Proceedings of the Second International Workshop on Persistence and Java (PJW2), [Online]. Retrieved from the Internet: <URL: http://ftp.ncnu.edu/tw/JavaDownload/Docs/Persistence/Com.sun.labs.forest.pjava.pjw2_pdf.pdf>, (Aug. 1997), 89-105. |
Kuck, Norbert, et al., “SAP VM Container: Using Process Attachable Virtual Machines to Provide Isolation and Scalability for Large Servers”, Article, SAP AG, Walldorf, Germany, (2002), 2 pgs. |
Loosco, Marcelo, et al., “A New Distributed Java Virtual Machine for Cluster Computing”, Notes in Computer Science, Springer-Verlag, v. 2790, (2003), 10 pgs. |
Luck, Greg, “Ehcache 1.0 released”, [Online]. Retrieved from the Internet: <URL: http://www.theserverside.com/news>, (Oct. 9, 2004), 5 pgs. |
March, Andres, “OSCache: Change Log”, [Online]. Retrieved from the Internet: <URL: http://www.opensymphony.com/oscache/wiki/Change%20Log.html>, (Jan. 18, 2004), 11 pgs. |
Marinescu, Floyd, “SpiritSoft Announces Availability of SpiritCache 2.0”, [Online]. Retrieved from the Internet: <URL: http://www.theserverside.com/news/thread.tss?thread_id=18483>, (Mar. 21, 2003), 5 pgs. |
Mitchell, Nick, “The Runtime Structure of Object Ownership”, Object-Oriented Programming Lecture Notes in Computer Science, ECOOP, LNCS, Springer-Verlag Berlin Heidelberg, XP019041424, ISBN: 978-3-540-35726-1, (Sep. 2006), 74-98. |
Movva, Sudhir, et al., “Transparent Clustered Database Failover Using JAVA”, [Online]. Retrieved from the Internet: <URL: http://www.quest-pipelines.com/newsletter-v5/0604_A.htm>, (Apr. 2004), 11 pgs. |
Oetiker, Tobias, “SEPP Software Installation and Sharing System”, Proceedings of the Twelfth Systems Administration Conference (LISA '98), Boston, Massachusetts, (Dec. 6-11, 1998), 253-260. |
Osdir, “RE: Barracude: Reference Objects in Session/ServletContext”, msg#00056, (Nov. 2002). |
Parnas, Dagfinn, “SAP Virtual Machine Container”, [Online]. Retrieved from the Internet: <URL: https://weblogs.sdn.sap.com/pub/wig/940>, (Oct. 23, 2004), 4 pgs. |
Pasin, Macia, et al., “High-Available Enterprise JavaBeans Using Group Communication System Support”, XP002285985, 1-6. |
Pawlan, Monica, “Reference Objects and Garbage Collection”, Sun Microsystems, (Aug. 1998), 16 pgs. |
Penchikala, Srini, “J2EE Object-Caching Frameworks”, [Online]. Retrieved from the Internet: <URL: http://www.javaworld.com/javaworld/jw-05-2004/jw-0531-cache_p.html>, (Apr. 11, 2005), 15 pgs. |
Penchikala, Srini, “Object Caching in a Web Portal Application Using JCS”, [Online]. Retrieved from the Internet: <URL: http://www.onjava.com/pub/a/onjava/2003/12/23/caching.html>, (Dec. 23, 2003), 18 pgs. |
Polk, Jennifer, et al., “Oracle Database Net Services Administrator's Guide 10g Release 1 (10.1)”, Retrieved on Apr. 26, 2007, reference No. XP002431369, [Online]. Retreived from the Internet: <URL: http://download-west.oracle.com/docs/cd/B19306_01/network.102/b14212.pdf>, (Oct. 2005), 1-29. |
Potanin, Alex, et al., “Scale-Free Geometry in OO Programs”, Communications of the ACM, XP002478203; ISSN: 0001-0782, (May 2005), 99-103. |
Ravenbrook, “The Memory Management Reference”, [Online]. Retrieved from the Internet: <URL: http://www.memorymanagement.org/glossary/full.html>, (Dec. 4, 2001). |
Rosenberg, David, “Bringing Java to the Enterprise: Oracle on its Java Server Strategy”, IEEE Internet Computing IEEE USA, vol. 2, No. 2, Database accession No. 5902816, XP002431362; ISSN: 1089-7801, (Mar. 2, 1998), 52-59. |
Salah, Maher M., “An Environment for Comprehending the Behavior of Software Systems”, Drexel University, XP002477233, (Jun. 2005), 1-158. |
Salo, Timo, et al., “Object Persistence Beyond Serialization”, Increasing Productivity and Reducing Maintenance, Dr. Dobb's Journal, M7T Publ., vol. 24, No. 5,, XP000925486. ISSN: 1044-789X, (May 1999), 10 pgs. |
Salo, Timo, et al., “Persistence in Enterprise JavaBeans Applications”, JOOP, XP-002142904, (Jul. 1999), 5 pgs. |
Smith, M. P., et al., “Providing a User Customizable Tool for Software Visualization at Runtime”, Fourth lasted International Conference on Visualization, Imaging, and Image Processing Acta Press, XP002477257, ISBN: 0-88986-454-3, (2004), 135-140. |
Smith, M. P., et al., “Runtime Visualisation of Object Oriented Software”, Proceedings First International Workshop on Visualising Software for Understanding and Analysis, XP002477258, ISBN: 0-7695-1662-9, (2002), 81-89. |
Smith, Michael P., et al., “Identifying Structural Features of Java Programs by Analysing the Interaction of Classes at Runtime”, 2005 3rd IEEE International Workshop on Visualizing Software for Understanding and Analysis (IEEE Cat. No. 05EX1225), XP002477232, ISBN: 0-7803-9540-9, (2005), 108-113. |
Smits, Thomas, “Unbreakable Java—The Java Server that Never Goes Down”, Article, SAP TechED, San Diego and Munich, (Nov. 2004), 1-5. |
Srinivasan, V., et al., “Object Persistence in Object-Oriented Applications”, IBMSystems Juornal, IBM Corp., vol. 36, No. 1,, XP000685709, ISSN: 0018-8670, (1997), 22 pgs. |
Stark, Ian, “CS2 Advanced Programming in Java Note 9”, CS2Bh, (2002), 5 pgs. |
Surdeanu, et al., “Design and Performance Analysis of a Distributed Java Virtual Machine”, Parallel and Distributed Systems, IEEE Transactions on vol. 13, Issue 6, (Jun. 2002), 611-627. |
Tanenbaum, A. S., “Modern Operating Systems”, 2nd Edition, Upper Saddle River, New Jersey: Prentice-Hall, Inc., English Translation of Moderne Betriebssysteme, vol. 2, pp. 539-617, (2002) XP002385695, (2001), 531-578. |
Tanenbaum, Andrew S., “Structured Computer Organization”, Prentice-Hall, Inc., Englewood Cliffs, New Jersey, 2nd Edition, (1984), 10-12. |
Tatarinov, Igor, et al., “Static Caching in Web Servers”, IEEE, (1997), 8 pgs. |
Tullmann, Patrick, et al., “Janos: A Java-Oriented OS for Active Network Nodes”, Paper, Flux Research Group, University of Utah, (Mar. 2001), 14 pgs. |
Tuttle, Steven, et al., “Understanding LDAP Design and Implementation”, IBM.com Redbooks, (Jun. 2004), 1-774. |
Vandermeer, et al., “ReDAL: Request Distribution for the Application Layer”, Distributed Computing Systems, (Jun. 6, 2005), 717-726. |
Veldema, et al., “Runtime Optimizations for a Java DSM Implementation”, Proceedings of the 2001 Joint ACM-ISCOPE conference on Java Grande, [online] [retrieved on Jun. 28, 2007] Retrieved from the Internet <URL:http://delivery.acm.org/10.1145/380000/376842/p153-veldema.pdf?key1=376842&key2=2893403811&coll=GUIDE&dl=GUIDE&CFID=26913973&CFTOKEN=12550. |
Wang, Ben, “Enter the JBoss Matrix”, JBossCache 1.0 Released [online] [retrieved on Oct. 24, 2008], Retrieved from the Internet <URL:http://blogs.jboss.com/blog/nfleury/2004/03/25/JBossCache+1.0+Released.html>, (Mar. 25, 2004). |
Wolf, Martin, “Administration of the SAP Web Application Server”, Seminar System Modeling 2005 Hasso-Plattner-Institute for Software Systems Engineering, (2005), 8 pgs. |
Wong, Wayne A., et al., “Modified LRU Policies for Improving Second-Lever Cache Behavior”, Department of Computer Science and Engineering, University of Washington, (Jan. 2000), 11 pgs. |
Yue, K. K., et al., “An Effective Processor Allocation Strategy for Multiprogrammed Shared-Memory Multiprocessors”, IEEE 8(12), (1997), 1246-1258. |
Zimmermann, Thomas, et al., “Visualizing Memory Graphs”, Springer-Verlag Berlin Heidelberg; S. Diehl (Ed): Software Visualization,, XP002478204, LNCS 2269, (2002), 191-204. |
Number | Date | Country | |
---|---|---|---|
20150269075 A1 | Sep 2015 | US |
Number | Date | Country | |
---|---|---|---|
Parent | 13181299 | Jul 2011 | US |
Child | 14671890 | US | |
Parent | 12831918 | Jul 2010 | US |
Child | 13181299 | US | |
Parent | 11024554 | Dec 2004 | US |
Child | 12831918 | US |