US20020062419A1 - Method and system for persistently storing objects in an object oriented environment - Google Patents

Method and system for persistently storing objects in an object oriented environment Download PDF

Info

Publication number
US20020062419A1
US20020062419A1 US09/928,881 US92888101A US2002062419A1 US 20020062419 A1 US20020062419 A1 US 20020062419A1 US 92888101 A US92888101 A US 92888101A US 2002062419 A1 US2002062419 A1 US 2002062419A1
Authority
US
United States
Prior art keywords
list
segment
references
address
referenced
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.)
Granted
Application number
US09/928,881
Other versions
US7269684B2 (en
Inventor
Konstantin Konson
Alexander Terekhov
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.)
International Business Machines Corp
Original Assignee
International Business Machines Corp
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 International Business Machines Corp filed Critical International Business Machines Corp
Assigned to INTERNATIONAL BUSINESS MACHINES CORPORATION reassignment INTERNATIONAL BUSINESS MACHINES CORPORATION ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: KONSON, KONSTANTIN,, TEREKHOV, ALEXANDER
Publication of US20020062419A1 publication Critical patent/US20020062419A1/en
Application granted granted Critical
Publication of US7269684B2 publication Critical patent/US7269684B2/en
Adjusted expiration legal-status Critical
Expired - Fee Related legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/448Execution paradigms, e.g. implementations of programming paradigms
    • G06F9/4488Object-oriented
    • G06F9/4493Object persistence
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/28Databases characterised by their database models, e.g. relational or object models
    • G06F16/289Object oriented databases

Definitions

  • the present invention is related to a mechanism for storing and retrieving dynamically changing data. Particularly, the present invention is related to a method and system for persistently storing objects of an object oriented environment and restoring such objects respectively.
  • An object oriented environment provides all necessary mechanisms, tools and functionality to realize a method and system according to the concepts of object oriented design.
  • Object oriented design is a design method in which a system is modeled as a collection of cooperating objects wherein individual objects are treated as instances of a class within a class hierarchy.
  • Four stages can be identified in object oriented design, i.e., identifying the classes and objects, their semantics, their relationships and specifying class and object interfaces and implementation.
  • Object-oriented design is one of the stages of object-oriented programming.
  • object refers to a unique instance of a data structure defined according to a template provided by its class. Each object has its own values for the variables belonging to its class and can respond to the messages and methods defined by its class.
  • a class is a prototype for an object in an object-oriented language, analogous to a derived type in a procedural language and may also be considered to be a set of objects which share a common structure and behavior.
  • the structure of a class is determined by the class variables which represent the state of an object of that class whereas the behavior is given by a set of methods associated with the class.
  • Classes are related in a class hierarchy.
  • One class may be a specialization, a so called “subclass” of another or it may be composed of other classes or it may use other classes in a client-server relationship.
  • the state of an object is its configuration, attributes, condition, or information content.
  • the state of an object is usually temporary, i.e. it changes with time, and is volatile, i.e., it will be lost or reset to some initial state, if a system running in an object oriented environment is switched off. Therefore, there is a major need for mechanisms to store the state of an object persistently in a way that a new object having the particular state can be created at any time. In other words, a concept needs to be implemented where created objects and variables continue to exist and retain their values between runs of the system.
  • a persistent storage i.e., a device into which data can be entered, in which they can be held, and from which they can be retrieved at a later time, such as a tape, a floppy, a hard drive or some optical storage.
  • a persistent storage i.e., a device into which data can be entered, in which they can be held, and from which they can be retrieved at a later time, such as a tape, a floppy, a hard drive or some optical storage.
  • the data structure used to access the persistent storage might also differ. It can be organized like a data base, files, queues or directories.
  • a persistent medium i.e., the medium in which the objects get stored.
  • a persistent medium can be formed, e.g., by a data base, files, queues or directories.
  • an intermediate layer is required that functions as an adapter. This adapting layer will be called “persistent data layer”. It is the task of the persistent data layer to conduct the storing and recreating of the objects persistently stored in the persistent medium.
  • a more flexible way of persistently storing objects is by using an object oriented database, i.e., a system that encapsulates a database management system functioning as the persistent data layer and the persistent medium.
  • the access to the persistent medium is conducted by the database management system and it is completely hidden from the point of view of the objects to be stored.
  • additional measures have to be taken in order to convert the objects from their internal run-time representation into a format suitable for the object oriented database.
  • the conversion process from the run-time representation into a database representation of the objects adds additional overhead to the object oriented environment. Such overhead might reduce the performance of a system running in such an environment drastically. This holds true especially for systems frequently storing modified or newly created objects.
  • the foregoing object is achieved by a method and a system for persistently storing and restoring persistently stored objects of an object oriented environment established on a computer system having a volatile memory and a persistent storage.
  • first list is created that contains first references to the segments.
  • the first list is also called “segment map”, since it allows to find every segment placed in that volatile memory.
  • the segments are further divided into blocks.
  • the blocks are indicated by second references.
  • the second references are stored in a newly created second list, also referred to as “object map”.
  • a block is allocated. Then an object description is created by saving the object's values of the variables belonging to its class into the allocated block. After saving the object description in the allocated block, a new element is added to the second list containing the particular reference to said created object description. Then, the references of the object descriptions of all other objects referenced in the present object are determined. These references to other objects are stored in the created object descriptions by setting the address of the referenced object description as the reference in the created object description. Finally, the second list (object map), the segments referenced by the first list (segment map) and the first list (segment map) are stored on said persistent storage.
  • the object persistently stored in the above way are retrieved and recreated according to the following steps.
  • the first list (segment map) containing the first references to the segments and all segments referenced by said first references are retrieved from the persistent storage and stored in the volatile memory.
  • the difference between the old memory address at which the segment used to reside in the volatile memory and the new memory address at which said segment now resides in the volatile memory is stored in the first list (segment map). Of course, the old memory address was persistently stored in the first place.
  • the second list (object map) containing the second references to the blocks are retrieved from said persistent storage.
  • the segment that contains the block referenced by a particular element of said second list (object map) is determined.
  • a new object is created in said volatile memory and the new address of said created object is saved in said second list (object map).
  • the new object is initialized with the values taken from the object description and the new addresses of the objects referenced by the newly created object are determined and the new address is set as the reference in the newly created object.
  • FIG. 1 shows a high level block diagram of a first known concept for persistently storing objects of an object oriented environment
  • FIG. 2 shows a high level block diagram of a second known concept for persistently storing objects of an object oriented environment
  • FIG. 3 shows a high level block diagram of a concept in accordance with the present invention for persistently storing objects of an object oriented environment
  • FIG. 4 shows a data structure of an object oriented environment at the beginning of a process of persistently storing objects according to the present invention
  • FIG. 5 shows an example of the structure of an object and the respective representation of the object in form of an object description according to the present invention
  • FIG. 6 shows a block diagram illustrating the data structure of the four object descriptions being saved in a first segment and a second segment according to the present invention.
  • FIG. 7 shows a block diagram illustrating the data structure of a region after the variable “History” has been stored according to the present invention.
  • FIG. 1 there is depicted a high level block diagram of a first known concept of an object oriented environment.
  • objects 100 , 102 , 104 and 106 are grouped together in an object layer 108 illustrated by a rectangle including the four objects 100 to 106 .
  • objects can be accessed directly by an application running in the object oriented environment.
  • PDL Persistent Data Layer
  • the serialization process is performed in a Persistent Data Layer (PDL) which functions as an interface between the object layer 108 and a persistent medium 112 , into which the stream 110 gets written.
  • PDL Persistent Data Layer
  • the persistent medium 112 is formed by, e.g., a data base, a file or a queue.
  • the concept for persistently storing objects according to FIG. 1 is an example for a static persistence, i.e., after storing the objects loose their accessibility.
  • FIG. 2. There is depicted a high level block diagram of the second known concept.
  • Five objects 120 , 122 , 124 , 126 and 128 are grouped together in an object layer 130 illustrated by a rectangle surrounding the objects 120 to 128 .
  • the objects 120 to 128 are stored in an object oriented database 132 , i.e., a system that encapsulates a database management system 134 functioning as the persistent data layer and a persistent medium 136 .
  • Each of the objects 120 to 128 has got a representation 140 to 148 in the database management system 134 .
  • the access to the persistent medium 136 is conducted by the database management system 134 and it is completely hidden from the point of view of the objects 120 to 128 to be stored.
  • FIG. 3 there is depicted a high level block diagram of a system in accordance with the present invention for persistently storing objects of an object oriented environment established on a computer system having a volatile memory and a persistent storage.
  • An object layer illustrated by rectangle 200 includes objects 201 to 208 .
  • the object layer resides in the volatile memory.
  • the persistent data layer is formed by a segment image 210 .
  • the segment image 210 is formed by a first segment 212 , a second segment 214 and a third segment 216 . It is acknowledged, that there can be any number of segments forming a segment image.
  • Each segment keeps a representation of one or more objects.
  • Segment 212 keeps a representation 220 of object 203 and a representation 221 of object 206
  • segment 214 keeps representations 223 , 224 and 225 corresponding to objects 202 , 205 and 207
  • segment 216 keeps representations 226 , 227 and 228 corresponding to objects 201 , 204 and 208 .
  • All the segments forming the segment image are stored into a persistent medium 230 , such as a data base, files, queues.
  • the persistent medium is realized by utilizing a persistent storage.
  • the role of the persistent data layer is basically taken over by the segments 212 to 216 in which the objects get stored.
  • Pieces of memory are allocated in the volatile memory.
  • the pieces of memory are used to store segments.
  • Each segment is subdivided into a plurality of portions, so called blocks.
  • the blocks of one segment are of the same size.
  • different sized segments and different sized blocks are provided to allow storing of different sized data in a space saving manner.
  • the segment map can be seen as an ordinary list, for performance reasons, the list is at least indexed and, preferably, realized in a tree structure.
  • a tree is a graph wherein there is only one route between any pair of nodes, and there is a notion of “toward top of the tree” ,i.e. the root node, and its opposite direction, toward the leaves.
  • the tree structure follows the structure of a B-tree. The concept of the B-trees are, for example, explained in D. E. Knuth—“The Art of Computer Programming, Vol. 3, Sorting and Searching”, pp. 482-491, Addison-Wesley, 1973.
  • the blocks are used to keep a representation of an object.
  • the representation of an object might be kept in more than one block, but at least one block is used to keep a representations of an object.
  • a second list is created.
  • the second list contains second references, referring to the blocks. This is for example implemented by pointers to the address at which the respective block is stored in the volatile memory.
  • the second list is used to recreate the object structure and the objects getting persistently stored.
  • the second list keeps references to every single object at the same time. Since the second list keeps a reference to every single object stored it will be called “object map” in the following.
  • blocks of different block size exists and they are grouped in different linked lists, e.g., a linked list for blocks that can keep 50 bytes, 70 bytes or 150 bytes.
  • the different linked lists containing the available blocks are called “regions”. To distinguish the different block size, they are referred to as “region 50”, “region 70” and “region 150” respectively.
  • the whole process of saving data according to the present invention starts together with the start of the system running in an object oriented environment in which the process is implemented and it keeps on running as long as the system operates. All modifications to the object, i.e., the state of the objects, are continuously monitored and registered. At predetermined check points all modifications get stored to the persistent storage. The check points can be chosen according to different requirements, e.g., the completion of a transaction, the expiry of a time limit or the reaching of an amount of modifications. After a restart of the object oriented environment the state of the objects can be recreated as it was at the point at which the last checkpoint occurred.
  • segment map and the object maps are implemented following the structure of a tree.
  • an image descriptor 300 is created containing a segment map descriptor 302 (SMD), i.e., a reference to a segment map 304 , and a first object map descriptor 306 (OMD) that references a first object map 307 (OM) and a second object map descriptor 308 that references a second object map 309 .
  • SMD segment map descriptor
  • OMD first object map descriptor 306
  • FIG. 5 shows an example of the structure of an object 330 and the respective representation of the object in form of an object description 332 .
  • the object 330 consists of a first string “First Name”, a second string “LastName” both having the length of 20 characters, an integer value “Age” and a text field “History”, whereby the text field is a character string having a variable length.
  • the representation of such data structure is shown in the object description 332 .
  • the strings “FirstName” and “LastName” are represented by a first one-dimensional character array “FirstName” and a second one-dimensional character array “LastName” respectively.
  • the integer “Age” can be found as an integer having the same name in the object description, whereas the text field “History” has been converted to a section “History”.
  • the object description “Schwarz” fits in one of the blocks of the first segment. Therefore, the first block 410 is allocated to keep the object description “Schwarz”. The remaining blocks 411 , 412 , 413 of the first segment stay empty at this point. Thus, they are still in the linked list of “Region 60”.
  • the object description for the object type “Member” fits in one of the blocks of the second segment. Therefore, the fifth block 415 is allocated to keep the object description “Member1”, the sixth block 416 is allocated to keep the object description “Member2” and the seventh block 417 is allocated to keep the object description “Member3.” The remaining eighth block 418 of the second segment stays empty at this point. Therefore, it is still in the linked list of “Region 70.”
  • the first block 460 is occupied by the object map “Family” and the second the second block 462 is occupied by the object map “Member” as shown in FIG. 4.
  • the remaining blocks 462 and 463 of the first segment 450 are taken for storing the first two of three chunks of the variable “History”.
  • For the third chunk of the variable “History” the second segment 465 has been allocated.
  • the fifth block 471 being part of the second segment 465 keeps the third chunk of the variable “History”.
  • the chunks of the variable “History” are stored in a linked list.
  • the end of the linked list is reached, if the pointer of an element of the linked list, i.e., a block, does not reference a valid address, but a null pointer “NIL” instead.
  • the remaining blocks 472 to 474 of the second segment 465 are still not taken. Therefore, they are listed in the linked list “Region 50” keeping all available blocks providing the length of 50 bytes.
  • a segment contains only blocks that are not currently used, then the whole segment is released, i.e., the allocated memory is freed. At the same time, the reference to the released segment is removed from the segment map.
  • the image descriptor is retrieved from the persistent storage and loaded into the volatile memory.
  • the segment map descriptor and the object map descriptors are known.
  • the segment map is recreated. From the persistent storage all elements forming the segment map are retrieved.
  • the B-tree structure is rebuild. After having recreated the segment map containing first references to all segments that are stored on said persistent storage, the segments itself are retrieved from the persistent storage and stored in the volatile memory.
  • the segments might also be stored in a file.
  • the segment map provides the information of the old memory address at which the segment used to reside in the volatile memory. By allocating new memory spaces to store the segments retrieved from the volatile memory, new memory addresses at which the segment are actually stored is known. The difference between the old memory address and the new memory address is calculated for each segment and stored in the segment map.
  • the object map is retrieved from said persistent storage, in order to rebuild the B-tree that forms the object map containing second references to blocks keeping the object descriptions.
  • all the different objects need to be recreated. This is done by determining the segment that contains the block referenced by a particular element of the object map, creating a new object in the volatile memory and saving the new address of said created object in the object map, and initializing the new object with the values taken from the object description.
  • variables having a variable length are restored.
  • such variables are stored in sections.
  • one or more blocks are allocated in the volatile memory that allows to keep the actual value of the variable having a variable length.
  • a linked list consisting of the blocks is created and the value of the variable is saved into the blocks forming the linked list.
  • a reference to the head of the linked list is stored in the respective object description.
  • the present invention can be realized in hardware, software, or a combination of hardware and software. Any kind of computer system—or other apparatus adapted for carrying out the methods described herein—is suited.
  • a typical combination of hardware and software could be a general purpose computer system with a computer program that, when being loaded and executed, controls the computer system such that it carries out the methods described herein.
  • the present invention can also be embedded in a computer program product, which comprises all the features enabling the implementation of the methods described herein, and which—when loaded in a computer system—is able to carry out these methods.

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Databases & Information Systems (AREA)
  • Software Systems (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Data Mining & Analysis (AREA)
  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)

Abstract

A method and a system is provided for persistently storing and restoring objects of an object oriented environment established on a computer system having a volatile memory and a persistent storage. Pieces of memory, referred to as segments are allocated in the volatile memory. Then, a first list is created that contains first references to said segments. The segments are further divided into blocks. The blocks are indicated by second references. The second references are stored in a second list. In order to store an object present in the volatile memory, a block is allocated. Then an object description is created by saving the object's values of its variables. After saving the object description in the allocated block, a new element is added to the second list containing the particular reference to said created object description. Then, the references of the object descriptions of all other objects referenced in the present object are determined. These references to other objects are stored in the created object descriptions by setting the address of said referenced object description as the reference in the created object description. Finally, the second list, the segments referenced by the first list and the first list are stored on said persistent storage.

Description

    BACKGROUND OF THE INVENTION
  • 1. Field of the Invention [0001]
  • The present invention is related to a mechanism for storing and retrieving dynamically changing data. Particularly, the present invention is related to a method and system for persistently storing objects of an object oriented environment and restoring such objects respectively. [0002]
  • 2. Description of the Related Art [0003]
  • An object oriented environment provides all necessary mechanisms, tools and functionality to realize a method and system according to the concepts of object oriented design. Object oriented design is a design method in which a system is modeled as a collection of cooperating objects wherein individual objects are treated as instances of a class within a class hierarchy. Four stages can be identified in object oriented design, i.e., identifying the classes and objects, their semantics, their relationships and specifying class and object interfaces and implementation. Object-oriented design is one of the stages of object-oriented programming. [0004]
  • In object-oriented programming the expression “object” refers to a unique instance of a data structure defined according to a template provided by its class. Each object has its own values for the variables belonging to its class and can respond to the messages and methods defined by its class. [0005]
  • A class, on the other hand, is a prototype for an object in an object-oriented language, analogous to a derived type in a procedural language and may also be considered to be a set of objects which share a common structure and behavior. The structure of a class is determined by the class variables which represent the state of an object of that class whereas the behavior is given by a set of methods associated with the class. [0006]
  • Classes are related in a class hierarchy. One class may be a specialization, a so called “subclass” of another or it may be composed of other classes or it may use other classes in a client-server relationship. [0007]
  • The state of an object is its configuration, attributes, condition, or information content. The state of an object is usually temporary, i.e. it changes with time, and is volatile, i.e., it will be lost or reset to some initial state, if a system running in an object oriented environment is switched off. Therefore, there is a major need for mechanisms to store the state of an object persistently in a way that a new object having the particular state can be created at any time. In other words, a concept needs to be implemented where created objects and variables continue to exist and retain their values between runs of the system. [0008]
  • To improve readability, in the following, the expression “to store an object” will be used synonymously to the expression “to store the state of an object”. [0009]
  • During operation of a system running in an object oriented environment multiple objects get created, modified and deleted. In many cases existing objects need to be available after the termination of the system's operation and a restart of the system respectively. In order to extend the availability of an object beyond the operation of the respective system, the object needs to be saved to a persistent storage, i.e., a device into which data can be entered, in which they can be held, and from which they can be retrieved at a later time, such as a tape, a floppy, a hard drive or some optical storage. However, the data structure used to access the persistent storage might also differ. It can be organized like a data base, files, queues or directories. [0010]
  • More generally, in order to provide persistency in an object oriented environment a persistent medium is required, i.e., the medium in which the objects get stored. Such a persistent medium can be formed, e.g., by a data base, files, queues or directories. Between the objects which reside in a volatile memory during operation of the system and the persistent medium an intermediate layer is required that functions as an adapter. This adapting layer will be called “persistent data layer”. It is the task of the persistent data layer to conduct the storing and recreating of the objects persistently stored in the persistent medium. [0011]
  • In a known concept for persistently storing objects all objects to be stored get serialized into a stream and saved on the persistent medium. This concept, however, realizes a static persistence, i.e., after storing the objects loose their accessibility. New objects cannot be added to the stream, obsolete objects cannot be deleted and changed objects cannot be altered directly in the stream stored on the persistent medium. [0012]
  • A more flexible way of persistently storing objects is by using an object oriented database, i.e., a system that encapsulates a database management system functioning as the persistent data layer and the persistent medium. The access to the persistent medium is conducted by the database management system and it is completely hidden from the point of view of the objects to be stored. However, additional measures have to be taken in order to convert the objects from their internal run-time representation into a format suitable for the object oriented database. Especially, in case the objects contain data fields of a variable length, the conversion process from the run-time representation into a database representation of the objects adds additional overhead to the object oriented environment. Such overhead might reduce the performance of a system running in such an environment drastically. This holds true especially for systems frequently storing modified or newly created objects. [0013]
  • OBJECT OF THE INVENTION
  • It is therefore an object of the present invention to present a method and a system that offers persistence in an dynamically changing object oriented environment having at the same time an improved performance. [0014]
  • BRIEF SUMMARY OF THE INVENTION
  • The foregoing object is achieved by a method and a system for persistently storing and restoring persistently stored objects of an object oriented environment established on a computer system having a volatile memory and a persistent storage. [0015]
  • First, pieces of memory, referred to as “segments” are allocated in the volatile memory. Then, a first list is created that contains first references to the segments. The first list is also called “segment map”, since it allows to find every segment placed in that volatile memory. The segments are further divided into blocks. The blocks are indicated by second references. The second references are stored in a newly created second list, also referred to as “object map”. [0016]
  • In order to store an object present in the volatile memory, a block is allocated. Then an object description is created by saving the object's values of the variables belonging to its class into the allocated block. After saving the object description in the allocated block, a new element is added to the second list containing the particular reference to said created object description. Then, the references of the object descriptions of all other objects referenced in the present object are determined. These references to other objects are stored in the created object descriptions by setting the address of the referenced object description as the reference in the created object description. Finally, the second list (object map), the segments referenced by the first list (segment map) and the first list (segment map) are stored on said persistent storage. [0017]
  • The object persistently stored in the above way are retrieved and recreated according to the following steps. The first list (segment map) containing the first references to the segments and all segments referenced by said first references are retrieved from the persistent storage and stored in the volatile memory. The difference between the old memory address at which the segment used to reside in the volatile memory and the new memory address at which said segment now resides in the volatile memory is stored in the first list (segment map). Of course, the old memory address was persistently stored in the first place. [0018]
  • Then, the second list (object map) containing the second references to the blocks are retrieved from said persistent storage. For each element of the second list, the segment that contains the block referenced by a particular element of said second list (object map) is determined. Then a new object is created in said volatile memory and the new address of said created object is saved in said second list (object map). Then, the new object is initialized with the values taken from the object description and the new addresses of the objects referenced by the newly created object are determined and the new address is set as the reference in the newly created object.[0019]
  • BRIEF DESCRIPTION OF THE SEVERAL VIEWS OF THE DRAWINGS
  • The above, as well as additional objectives, features and advantages of the present invention, will be apparent in the following detailed written description. [0020]
  • The novel features of the invention are set forth in the appended claims. The invention itself, however, as well as a preferred mode of use, further objectives, and advantages thereof, will best be understood by reference to the following detailed description of an illustrative embodiment when read in conjunction with the accompanying drawings, wherein: [0021]
  • FIG. 1 shows a high level block diagram of a first known concept for persistently storing objects of an object oriented environment; [0022]
  • FIG. 2 shows a high level block diagram of a second known concept for persistently storing objects of an object oriented environment; [0023]
  • FIG. 3 shows a high level block diagram of a concept in accordance with the present invention for persistently storing objects of an object oriented environment; [0024]
  • FIG. 4 shows a data structure of an object oriented environment at the beginning of a process of persistently storing objects according to the present invention; [0025]
  • FIG. 5 shows an example of the structure of an object and the respective representation of the object in form of an object description according to the present invention; [0026]
  • FIG. 6 shows a block diagram illustrating the data structure of the four object descriptions being saved in a first segment and a second segment according to the present invention; and [0027]
  • FIG. 7 shows a block diagram illustrating the data structure of a region after the variable “History” has been stored according to the present invention.[0028]
  • DETAILED DESCRIPTION OF THE INVENTION
  • With reference to FIG. 1, there is depicted a high level block diagram of a first known concept of an object oriented environment. Four [0029] objects 100, 102, 104 and 106 are grouped together in an object layer 108 illustrated by a rectangle including the four objects 100 to 106. In the object layer 108, objects can be accessed directly by an application running in the object oriented environment. In order to store the objects 100 to 106 persistently, they get serialized into a stream 110. The serialization process is performed in a Persistent Data Layer (PDL) which functions as an interface between the object layer 108 and a persistent medium 112, into which the stream 110 gets written. The persistent medium 112 is formed by, e.g., a data base, a file or a queue. The concept for persistently storing objects according to FIG. 1 is an example for a static persistence, i.e., after storing the objects loose their accessibility.
  • A second known concept for persistently storing objects of an object oriented environment is now described with reference to [0030]
  • FIG. 2. There is depicted a high level block diagram of the second known concept. Five [0031] objects 120, 122, 124, 126 and 128 are grouped together in an object layer 130 illustrated by a rectangle surrounding the objects 120 to 128. The objects 120 to 128 are stored in an object oriented database 132, i.e., a system that encapsulates a database management system 134 functioning as the persistent data layer and a persistent medium 136. Each of the objects 120 to 128 has got a representation 140 to 148 in the database management system 134. The access to the persistent medium 136 is conducted by the database management system 134 and it is completely hidden from the point of view of the objects 120 to 128 to be stored.
  • Now with reference to FIG. 3, there is depicted a high level block diagram of a system in accordance with the present invention for persistently storing objects of an object oriented environment established on a computer system having a volatile memory and a persistent storage. An object layer illustrated by [0032] rectangle 200 includes objects 201 to 208. The object layer resides in the volatile memory. In the present system the persistent data layer is formed by a segment image 210. The segment image 210 is formed by a first segment 212, a second segment 214 and a third segment 216. It is acknowledged, that there can be any number of segments forming a segment image.
  • Each segment keeps a representation of one or more objects. [0033] Segment 212 keeps a representation 220 of object 203 and a representation 221 of object 206, whereas segment 214 keeps representations 223, 224 and 225 corresponding to objects 202, 205 and 207 and segment 216 keeps representations 226, 227 and 228 corresponding to objects 201, 204 and 208. All the segments forming the segment image are stored into a persistent medium 230, such as a data base, files, queues. The persistent medium is realized by utilizing a persistent storage.
  • Due to the provision of the segment image [0034] 210 a complicated database management system forming the persistent data layer can be omitted. According to the present invention the role of the persistent data layer is basically taken over by the segments 212 to 216 in which the objects get stored.
  • Before an object can be persistently stored a few steps are necessary that provide a respective infrastructure. First, pieces of memory are allocated in the volatile memory. The pieces of memory are used to store segments. Each segment is subdivided into a plurality of portions, so called blocks. Preferably, the blocks of one segment are of the same size. However, different sized segments and different sized blocks are provided to allow storing of different sized data in a space saving manner. [0035]
  • In order to keep track of all segments allocated in the volatile memory a first list gets created that contains first references, referring to the segments. This is for example implemented by pointers to the address at which the respective segment is stored in the volatile memory. Besides being used for keeping track of the allocated memory, the first list is used to recreate the object structure and the objects getting persistently stored. Since the first list allows to navigate through all segments, it will be called “segment map” in the following. [0036]
  • Although the segment map can be seen as an ordinary list, for performance reasons, the list is at least indexed and, preferably, realized in a tree structure. A tree is a graph wherein there is only one route between any pair of nodes, and there is a notion of “toward top of the tree” ,i.e. the root node, and its opposite direction, toward the leaves. Advantageously, the tree structure follows the structure of a B-tree. The concept of the B-trees are, for example, explained in D. E. Knuth—“The Art of Computer Programming, Vol. 3, Sorting and Searching”, pp. 482-491, Addison-Wesley, 1973. [0037]
  • The blocks are used to keep a representation of an object. However, the representation of an object might be kept in more than one block, but at least one block is used to keep a representations of an object. In order to keep track of all objects stored in different blocks, a second list is created. The second list contains second references, referring to the blocks. This is for example implemented by pointers to the address at which the respective block is stored in the volatile memory. Besides being used for keeping track of the blocks containing information about the objects, the second list is used to recreate the object structure and the objects getting persistently stored. By keeping a reference to the blocks containing information about the objects, the second list keeps references to every single object at the same time. Since the second list keeps a reference to every single object stored it will be called “object map” in the following. [0038]
  • After the allocation of a segment, all blocks are available to be seized for storing information, such as an object description. In order to keep track of all available blocks, these blocks get concatenated in a linked list. The blocks being taken to store information are removed from the linked list, since, in return, references to such blocks are stored either in the object map and/or in the object description. Preferably, blocks of different block size exists and they are grouped in different linked lists, e.g., a linked list for blocks that can keep 50 bytes, 70 bytes or 150 bytes. The different linked lists containing the available blocks are called “regions”. To distinguish the different block size, they are referred to as “[0039] region 50”, “region 70” and “region 150” respectively.
  • The object map can as well be seen as an ordinary list, for performance reasons, however, the list is at least indexed and, preferably, realized in a tree structure. Advantageously, the tree structure follows the structure of a B-tree. Although it is possible to store the object descriptions of all objects in one single object map, for performance reasons, one object map is created for each kind of object, i.e., for each class. [0040]
  • The whole process of saving data according to the present invention starts together with the start of the system running in an object oriented environment in which the process is implemented and it keeps on running as long as the system operates. All modifications to the object, i.e., the state of the objects, are continuously monitored and registered. At predetermined check points all modifications get stored to the persistent storage. The check points can be chosen according to different requirements, e.g., the completion of a transaction, the expiry of a time limit or the reaching of an amount of modifications. After a restart of the object oriented environment the state of the objects can be recreated as it was at the point at which the last checkpoint occurred. [0041]
  • In the following it is assumed that the segment map and the object maps are implemented following the structure of a tree. [0042]
  • Now with reference to FIG. 4, there is depicted a data structure of an object oriented environment at the beginning of a process of persistently storing objects according to the present invention. On starting of the object oriented environment, an [0043] image descriptor 300 is created containing a segment map descriptor 302 (SMD), i.e., a reference to a segment map 304, and a first object map descriptor 306 (OMD) that references a first object map 307 (OM) and a second object map descriptor 308 that references a second object map 309. The first object map 307 stores references to objects of the class “Family”, whereas the second object map 309 stores references to objects of the class “Member”.
  • The initially existing first and second object maps [0044] 307 and 309 as described above only consists of one empty leave. However, in order to store the structure formed by the image descriptor 300 and the first and second object maps 307 and 309, a segment 320 is allocated in the volatile memory consisting of a first, a second, a third and a fourth block 322, 323, 324 and 325, each provided for keeping 50 bytes of data. As aforementioned, the address of the segment 320 is stored in the segment map 304.
  • The [0045] first object map 307 is actually stored in the first block 322 and the second object map 309 is stored in the second block 323. Therefore, the first object map descriptor 306 is formed by a pointer to the memory address at which the first block 322 begins in the segment 320 and the second object map descriptor 308 is formed by a pointer to the memory address at which the second block 323 begins in the segment 320. The remaining blocks, i.e., the third and the fourth block 324 and 325 which are still free are part of a linked list “region 50” as already explained above. In case the number of blocks provided by the segment is not sufficient to take all object maps, another segment gets allocated. Accordingly, the segment map is completed to also reference the newly allocated segment (not shown). At any time, the segment map 304 consists of as many elements as segments are allocated.
  • The [0046] segment map 304 and the object maps 307 and 309 include a header portion that contains data necessary to build a tree structure, such as a reference to the parent node and references to child nodes. Both, the segment map and the object maps are extended by creating a new element and incorporating it into the tree structure.
  • Whenever a new object is created, an object description is created as well. All variables having a fixed length are stored directly in the object description. The following data types might be included in an object description. First of all, raw data, i.e., data that are directly stored in the object description, such as integers, Boolean, real numbers, characters and strings. Furthermore, the object description might comprise references referring to other objects, object descriptions or other data structures. Such references can, for example, be formed by pointers, addresses or indexes. Sections and references to other object descriptions also belong to this group which are used to reflect the dependencies between objects and to store certain kinds of variables of the objects. Besides storing a representation of an object, sections are also used to store variables having a variable length. References to other object descriptions allow to store relations between objects. [0047]
  • FIG. 5 shows an example of the structure of an [0048] object 330 and the respective representation of the object in form of an object description 332. The object 330 consists of a first string “First Name”, a second string “LastName” both having the length of 20 characters, an integer value “Age” and a text field “History”, whereby the text field is a character string having a variable length. The representation of such data structure is shown in the object description 332. The strings “FirstName” and “LastName” are represented by a first one-dimensional character array “FirstName” and a second one-dimensional character array “LastName” respectively. The integer “Age” can be found as an integer having the same name in the object description, whereas the text field “History” has been converted to a section “History”.
  • In order to store the variable length text field “History” in a section, the text field gets divided in chunks of, e.g., 50 bytes. Each of the chunks are then stored in one block provided for storing 50 bytes. [0049]
  • Returning to the example shown in FIG. 4, assuming the object types or classes of the system are defined as follows (the asterisk “*” mark references): [0050]
    Family {
    Text History;
    *Father Fath;
    *Mother Moth;
    *Child Chld;
    };
    Member {
    Enum Role = {Father, Mother, Child};
    String (20) FirstName;
    Int Age;
    *Family Fam;
    };
    Four objects get created:
    Family Schwarz;
    Member Member1, Member2, Member3;
  • Then, the object descriptions get created: [0051]
    Schwarz OD Section History 150
    Member1 OD Father
    Max
    30
    *Schwarz OD
    Member2 OD Mother
    Maria
    28
    *Schwarz OD
    Member3 OD Child
    Eric
    4
    *Schwarz OD
  • The fixed length data are saved in the object descriptions. The data having a variable length, here the field “History”, is stored in sections. It should be noticed that the references to the family members defined in the object type “Family” are not listed in the object description of object “Schwarz.” This is done in order to avoid cyclic dependencies. According to the suggested method, all data get stored without being forced to perform complicated dependency checks. In the present case, during recreation of all objects, first, all objects of the type “Family” get recreated and then the objects of the type “Member”. [0052]
  • Now with reference to FIG. 6, there is depicted a block diagram illustrating the data structure of the four object descriptions being saved in a [0053] first segment 400 and a second segment 402. The first segment 400 consists of a first, a second, a third and a fourth block 410, 411, 412 and 413 each provided for keeping 60 bytes of data. The second segment 402 consists of a fifth, a sixth, a seventh and an eighth block 415, 416, 417 and 418 each provided for keeping 70 bytes of data.
  • The object description “Schwarz” fits in one of the blocks of the first segment. Therefore, the [0054] first block 410 is allocated to keep the object description “Schwarz”. The remaining blocks 411, 412, 413 of the first segment stay empty at this point. Thus, they are still in the linked list of “Region 60”. The object description for the object type “Member” fits in one of the blocks of the second segment. Therefore, the fifth block 415 is allocated to keep the object description “Member1”, the sixth block 416 is allocated to keep the object description “Member2” and the seventh block 417 is allocated to keep the object description “Member3.” The remaining eighth block 418 of the second segment stays empty at this point. Therefore, it is still in the linked list of “Region 70.”
  • The variable “History” having a variable length is stored in a section. The section comprises a number of blocks which are necessary to store all of the variable's contents. Assuming, that the variable “History” has got a length of 150 bytes and it is stored in blocks providing 50 bytes storage space each, then three such blocks are needed. [0055]
  • In FIG. 7, a block diagram is shown illustrating the data structure of a [0056] region 50 after the variable “History” has been stored. A first segment 450 consists of a first, a second, a third and a fourth block 460, 461, 462 and 463 each provided for keeping 50 bytes of data. A second segment 465 consists of a fifth, a sixth, a seventh and an eighth block 471, 472, 473 and 474 each provided for keeping 50 bytes of data as well.
  • The [0057] first block 460 is occupied by the object map “Family” and the second the second block 462 is occupied by the object map “Member” as shown in FIG. 4. The remaining blocks 462 and 463 of the first segment 450 are taken for storing the first two of three chunks of the variable “History”. For the third chunk of the variable “History” the second segment 465 has been allocated. The fifth block 471 being part of the second segment 465 keeps the third chunk of the variable “History”. The chunks of the variable “History” are stored in a linked list. The end of the linked list is reached, if the pointer of an element of the linked list, i.e., a block, does not reference a valid address, but a null pointer “NIL” instead. The remaining blocks 472 to 474 of the second segment 465 are still not taken. Therefore, they are listed in the linked list “Region 50” keeping all available blocks providing the length of 50 bytes.
  • After having created and persistently stored new objects according to the method as explained above, it is now discussed how persistently stored objects get deleted according to the present invention. In order to delete an stored object, first, the object description is checked whether there are variables having a variable length that are stored in sections. If yes, all blocks allocated by the section are released and returned to the linked list of the respective region. Then, the block keeping the object description is released and returned to the linked list of its respective region. Finally, the reference to the removed object description is deleted from the object map. [0058]
  • If a segment contains only blocks that are not currently used, then the whole segment is released, i.e., the allocated memory is freed. At the same time, the reference to the released segment is removed from the segment map. In order to simplify the procedure of recognizing segments only consisting of unused blocks, there is a counter that counts the number of allocated blocks. It gets maintained whenever a block gets allocated or released. Thus, only the value of this counter needs to get checked to determine whether there are still used blocks in a segment. [0059]
  • Another function provided by the method according to the present invention is the ability to modify directly the representation of object persistently stored. As aforementioned, the modified objects get stored at certain checkpoints. In the meantime, all changes to objects are registered. First of all, a list of objects is maintained the object descriptions of which need to be updated. Furthermore, all segments to be changed get listed, and, finally, all elements building the segment map. [0060]
  • When reaching the next checkpoint, all of the changes registered since the last checkpoint are written to the persistent medium. This allows to write all changes to one particular segment at the same time. Leading to a better performance. Changes to the object map is not necessary, since there are no new or deleted object in this case. [0061]
  • In the following, it is discussed how persistently stored objects get retrieved and recreated according to the present invention. All information that are initially necessary to start the recreation process are stored in the image descriptor as explained above. The image descriptor is stored on the persistent medium, e.g., in a data file the name of which is the key to find the correct image descriptor. [0062]
  • First of all, the image descriptor is retrieved from the persistent storage and loaded into the volatile memory. Thus, the segment map descriptor and the object map descriptors are known. Then, before caring about the object map, the segment map is recreated. From the persistent storage all elements forming the segment map are retrieved. In the volatile memory the B-tree structure is rebuild. After having recreated the segment map containing first references to all segments that are stored on said persistent storage, the segments itself are retrieved from the persistent storage and stored in the volatile memory. The segments might also be stored in a file. [0063]
  • The segment map provides the information of the old memory address at which the segment used to reside in the volatile memory. By allocating new memory spaces to store the segments retrieved from the volatile memory, new memory addresses at which the segment are actually stored is known. The difference between the old memory address and the new memory address is calculated for each segment and stored in the segment map. [0064]
  • Then, the object map is retrieved from said persistent storage, in order to rebuild the B-tree that forms the object map containing second references to blocks keeping the object descriptions. In the following, all the different objects need to be recreated. This is done by determining the segment that contains the block referenced by a particular element of the object map, creating a new object in the volatile memory and saving the new address of said created object in the object map, and initializing the new object with the values taken from the object description. [0065]
  • Then, in order to recreate the references from one object to another, the new addresses of objects referenced by the newly created object are determined and set as the reference in the newly created object. [0066]
  • Furthermore, the variables having a variable length are restored. As explained above such variables are stored in sections. First, one or more blocks are allocated in the volatile memory that allows to keep the actual value of the variable having a variable length. Then, a linked list consisting of the blocks is created and the value of the variable is saved into the blocks forming the linked list. Finally, a reference to the head of the linked list is stored in the respective object description. [0067]
  • Whenever a segment needs be determined that contains a particular block referenced by an element of the object map, the new address of the requested block is calculated by adding the reference referring to the requested block that corresponds to the old memory address and the difference between said old memory address and said new memory address. This allows to directly access the memory space where the newly created block resides. [0068]
  • The present invention can be realized in hardware, software, or a combination of hardware and software. Any kind of computer system—or other apparatus adapted for carrying out the methods described herein—is suited. A typical combination of hardware and software could be a general purpose computer system with a computer program that, when being loaded and executed, controls the computer system such that it carries out the methods described herein. The present invention can also be embedded in a computer program product, which comprises all the features enabling the implementation of the methods described herein, and which—when loaded in a computer system—is able to carry out these methods. [0069]
  • Computer program means or computer program in the present context mean any expression, in any language, code or notation, of a set of instructions intended to cause a system having an information processing capability to perform a particular function either directly or after either or both of the following a) conversion to another language, code or notation; b) reproduction in a different material form. [0070]

Claims (24)

What is claimed is:
1. A method for restoring persistently stored objects of an object oriented environment established on a computer system having a volatile memory and a persistent storage, the method comprising the steps of:
retrieving from said persistent storage a first list containing first references to segments, that is, pieces of memory, stored on said persistent storage;
retrieving all segments referenced by said first references and storing them in said volatile memory;
saving in said first list the difference between the old memory address at which the segment used to reside in the volatile memory and the new memory address at which said segment is stored;
retrieving from said persistent storage a second list containing second references to blocks, that is, portions of said segments, whereby said blocks contain an object description;
determining the segment that contains said block referenced by a particular element of said second list;
creating a new object in said volatile memory and saving the new address of said created object in said second list;
initializing said new object with the values taken from said object description; and
determining the new addresses of objects referenced by the newly created object and setting the new address as the reference in the newly created object.
2. The method according to claim 1, whereby said first list and/or said second list are ordered lists.
3. The method according to claim 1 or 2, whereby said first list and/or said second list are organized like a B-tree.
4. The method according to one of the preceding claims, whereby the elements of said first ordered list are indexed by said first references.
5. The method according to one of the preceding claims, whereby each of said first references corresponds to the old memory address at which the respective segment used to reside in the volatile memory.
6. The method according to one of the preceding claims, whereby the elements of said second ordered list are indexed by said second references.
7. The method according to one of the preceding claims, whereby each of said second references corresponds to the old memory address at which the respective block used to reside in said volatile memory.
8. The method according to one of the preceding claims, whereby said object description is formed by a collection of values owned by an object for the variables belonging to its class.
9. The method according to one of the preceding claims, whereby for each value in said object description of variables having a variable length the method further comprising the steps of:
allocating a number of blocks that allows to keep the actual value of the variable having variable length;
creating a linked list of said number of blocks;
saving said value into said number of blocks; and
storing a reference to the head of the linked list in said object description.
10. The method according to one of the preceding claims, whereby determining the segment that contains said block referenced by a particular element of said second list comprises the step of searching in said first ordered list (segment map) for the segment that contains said portion of said segment (block) referenced by said element.
11. The method according to one of the preceding claims, whereby determining the segment that contains said block referenced by a particular element of said second list further comprises the step of calculating the new address by adding the reference to said block (that corresponds to the old memory address) and said difference between said old memory address and said new memory address.
12. The method according to one of the preceding claims, whereby determining the new addresses of objects referenced by the newly created object comprises the step of searching in said second list (object map) for the element said contains the new address of the referenced object, that is referenced by the old address of the respective object description.
13. The method according to one of the preceding claims, whereby for all references to heads of linked lists the method further comprising the steps of:
reading all blocks of said linked list;
allocating memory to store the value of the variable retrieved from the linked list; and
storing the value in said allocated memory.
14. A method for persistently storing objects of an object oriented environment established on a computer system having a volatile memory and a persistent storage, the method comprising the steps of:
allocating in said volatile memory segments, that is, pieces of memory;
creating a first list (segment map) containing first references to said segments;
creating a second list (object map) containing second references to blocks, that is, portions of said segments;
allocating a block of one of said segments,
creating an object description by saving the values owned by the object of the variables belonging to its class into said allocated block;
adding a new element to said second list containing the particular reference to said created object description;
determining the address of the object description of another object referenced in said object;
setting the address of said respective object description as the reference in the created object description;
storing said second list (object map) on said persistent storage;
storing the segments referenced by said first list (segment map) on said persistent storage; and
storing said first list (segment map) on said persistent storage.
15. The method according to claim 14, whereby said first list and/or said second list are ordered lists.
16. The method according to claim 14 or 15, whereby said first list and/or said second list are organized like a B-tree.
17. The method according to one of the claims 14 to 16, whereby the elements of said first ordered list are indexed by said first references.
18. The method according to one of the claims 14 to 17, whereby each of said first references corresponds to the current memory address at which the respective segment resides in the volatile memory.
19. The method according to one of the claims 14 to 18, whereby the elements of said second ordered list are indexed by said second references.
20. The method according to one of the claims 14 to 19, whereby each of said second references corresponds to the current memory address at which the respective block resides in said volatile memory.
21. The method according to one of the claims 14 to 20, whereby determining the address of the object description of another object referenced in said object comprises the step of searching in said second ordered list (object map) for the element said contains the address of the object description of the referenced other object.
22. The method according to one of the claims 14 to 20, whereby determining the address of the object description of another object referenced in said object comprises the step of using a by a reference to the respective object description provided by each object.
23. The method according to one of the claims 14 to 22, whereby for each value of variables having a variable length the method further comprises the steps of:
allocating a number of portions (blocks) of one of said pieces of memory (segments) that allows to keep the actual value of the variable length variable;
creating a linked list of said number of portions (blocks);
saving value into said number of portions (blocks); and
storing a reference to the head of the linked list in said object description.
24. A computer program product stored on a computer usable medium, comprising computer readable program means for causing a computer to perform a method according to anyone of the preceding claims 1 to 23.
US09/928,881 2000-09-29 2001-08-13 Method and system for persistently storing objects in an object oriented environment Expired - Fee Related US7269684B2 (en)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
EP00121505 2000-09-29
DE00121505.2 2000-09-29

Publications (2)

Publication Number Publication Date
US20020062419A1 true US20020062419A1 (en) 2002-05-23
US7269684B2 US7269684B2 (en) 2007-09-11

Family

ID=32921562

Family Applications (1)

Application Number Title Priority Date Filing Date
US09/928,881 Expired - Fee Related US7269684B2 (en) 2000-09-29 2001-08-13 Method and system for persistently storing objects in an object oriented environment

Country Status (1)

Country Link
US (1) US7269684B2 (en)

Cited By (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20030023768A1 (en) * 2001-07-24 2003-01-30 Foti David A. Designating an object for destruction
FR2844068A1 (en) * 2002-08-30 2004-03-05 Hewlett Packard Development Co Method for saving and restoring data in program objects, comprises creation of point of recovery object, temporary copy of zones to be modified in memory object and restoration after modification
US20050103851A1 (en) * 2003-11-13 2005-05-19 Metrologic Instruments, Inc. Hand-supportable imaging-based bar code symbol reader employing a CMOS-type image sensor using global exposure techniques
US7069540B1 (en) * 2001-07-02 2006-06-27 Unisys Corporation COM persistence model
WO2007024419A2 (en) 2005-08-24 2007-03-01 Temporal Dynamics, Inc. Database heap management system with variable page size and fixed instruction set address resolution
US20070161595A1 (en) * 2003-06-09 2007-07-12 Mayo Foundation For Medical Education And Research Method of treating neurodegenerative disease
US20100204306A1 (en) * 2007-12-14 2010-08-12 Alnylam Pharmaceuticals, Inc. Method of Treating Neurodegenerative Disease
US9792563B1 (en) 2007-03-22 2017-10-17 Workday, Inc. Human resources system development

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20110219037A1 (en) * 2010-03-04 2011-09-08 Src, Inc. High-Performance Persistence Framework

Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5752243A (en) * 1993-10-20 1998-05-12 Microsoft Corporation Computer method and storage structure for storing and accessing multidimensional data

Patent Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5752243A (en) * 1993-10-20 1998-05-12 Microsoft Corporation Computer method and storage structure for storing and accessing multidimensional data

Cited By (13)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7069540B1 (en) * 2001-07-02 2006-06-27 Unisys Corporation COM persistence model
US7237237B2 (en) * 2001-07-24 2007-06-26 The Mathworks, Inc. Designating an object for destruction
US20030023768A1 (en) * 2001-07-24 2003-01-30 Foti David A. Designating an object for destruction
FR2844068A1 (en) * 2002-08-30 2004-03-05 Hewlett Packard Development Co Method for saving and restoring data in program objects, comprises creation of point of recovery object, temporary copy of zones to be modified in memory object and restoration after modification
US20070161595A1 (en) * 2003-06-09 2007-07-12 Mayo Foundation For Medical Education And Research Method of treating neurodegenerative disease
US7595306B2 (en) 2003-06-09 2009-09-29 Alnylam Pharmaceuticals Inc Method of treating neurodegenerative disease
US20110092565A1 (en) * 2003-06-09 2011-04-21 Alnylam Pharmaceuticals, Inc. Method of treating neurodegenerative disease
US20050103851A1 (en) * 2003-11-13 2005-05-19 Metrologic Instruments, Inc. Hand-supportable imaging-based bar code symbol reader employing a CMOS-type image sensor using global exposure techniques
WO2007024419A2 (en) 2005-08-24 2007-03-01 Temporal Dynamics, Inc. Database heap management system with variable page size and fixed instruction set address resolution
EP1934700A2 (en) * 2005-08-24 2008-06-25 Temporal Dynamics, Inc. Database heap management system with variable page size and fixed instruction set address resolution
EP1934700A4 (en) * 2005-08-24 2010-10-27 Temporal Dynamics Inc Database heap management system with variable page size and fixed instruction set address resolution
US9792563B1 (en) 2007-03-22 2017-10-17 Workday, Inc. Human resources system development
US20100204306A1 (en) * 2007-12-14 2010-08-12 Alnylam Pharmaceuticals, Inc. Method of Treating Neurodegenerative Disease

Also Published As

Publication number Publication date
US7269684B2 (en) 2007-09-11

Similar Documents

Publication Publication Date Title
CN105868228B (en) In-memory database system providing lock-free read and write operations for OLAP and OLTP transactions
US5568639A (en) Method and apparatus for providing an object-oriented file structuring system on a computer
US20220255014A1 (en) Trie-Based Indices for Databases
US8478962B2 (en) Tiered data management method and system for high performance data monitoring
US7146377B2 (en) Storage system having partitioned migratable metadata
JP2718881B2 (en) Token identification system
US7178100B2 (en) Methods and apparatus for storing and manipulating variable length and fixed length data elements as a sequence of fixed length integers
JP3848085B2 (en) High-speed storage resident processing method and processing system for transaction data
CN1026631C (en) Method of concurrency access for useing indexed tree to data base record
US20070043686A1 (en) Xml sub-document versioning method in xml databases using record storages
US20020093522A1 (en) Methods of encoding and combining integer lists in a computer system, and computer software product for implementing such methods
EP1204938A1 (en) System for accessing database tables mapped into memory for high performance data retrieval
KR20010022028A (en) Structure for a data-base
US7269684B2 (en) Method and system for persistently storing objects in an object oriented environment
Petrov Database Internals: A deep dive into how distributed data systems work
JP4199888B2 (en) Database management method
CN112513836A (en) Structured record retrieval
US7016913B2 (en) Method, system, data structures, and article of manufacture for implementing a persistent object
EP1510933B1 (en) Propagating of database modifications
US20040117763A1 (en) Persistent object management
US5634123A (en) Data management using nested records and code points
US20210209087A1 (en) Reorganization of Databases by Sectioning
Secosky et al. Getting Started with the DATA Step Hash Object
Baláz et al. Wheeler maps
JP3980326B2 (en) Data management method and computer-readable recording medium

Legal Events

Date Code Title Description
AS Assignment

Owner name: INTERNATIONAL BUSINESS MACHINES CORPORATION, NEW Y

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:KONSON, KONSTANTIN,;TEREKHOV, ALEXANDER;REEL/FRAME:012078/0756

Effective date: 20010521

FPAY Fee payment

Year of fee payment: 4

REMI Maintenance fee reminder mailed
LAPS Lapse for failure to pay maintenance fees
STCH Information on status: patent discontinuation

Free format text: PATENT EXPIRED DUE TO NONPAYMENT OF MAINTENANCE FEES UNDER 37 CFR 1.362

FP Lapsed due to failure to pay maintenance fee

Effective date: 20150911