<p>Object-oriented database management systems (OODBMS) are used to impleΒ ment and maintain large object databases on persistent storage. Regardless whether the underlying database model follows the object-oriented, the relaΒ tional or the object-relational paradigm, a key feature of any DBMS produ
Serialization and Persistent Objects: Turning Data Structures into Efficient Databases
β Scribed by Jiri Soukup, Petr MachΓ‘Δek (auth.)
- Publisher
- Springer-Verlag Berlin Heidelberg
- Year
- 2014
- Tongue
- English
- Leaves
- 276
- Edition
- 1
- Category
- Library
No coin nor oath required. For personal study only.
β¦ Synopsis
Recently, the pressure for fast processing and efficient storage of large data with complex relations increased beyond the capability of traditional databases. Typical examples include iPhone applications, computer aided design β both electrical and mechanical, biochemistry applications, and incremental compilers. Serialization, which is sometimes used in such situations is notoriously tedious and error prone.
In this book, Jiri Soukup and Petr MachΓ‘Δek show in detail how to write programs which store their internal data automatically and transparently to disk. Together with special data structure libraries which treat relations among objects as first-class entities, and with a UML class-diagram generator, the core application code is much simplified. The benchmark chapter shows a typical example where persistent data is faster by the order of magnitude than with a traditional database, in both traversing and accessing the data.
The authors explore and exploit advanced features of object-oriented languages in a depth hardly seen in print before. Yet, you as a reader need only a basic knowledge of C++, Java, C#, or Objective C. These languages are quite similar with respect to persistency, and the authors explain their differences where necessary.
The book targets professional programmers working on any industry applications, it teaches you how to design your own persistent data or how to use the existing packages efficiently. Researchers in areas like language design, compiler construction, performance evaluation, and no-SQL applications will find a wealth of novel ideas and valuable implementation tips. Under http://www.codefarms.com/bk, you will find a blog and other information, including a downloadable zip file with the sources of all the listings that are longer than just a few lines β ready to compile and run.
β¦ Table of Contents
Front Matter....Pages i-xviii
Introduction....Pages 1-35
Fundamentals of Persistence....Pages 37-107
Data Structures, Patterns, and UML....Pages 109-161
Advanced Features, Schema Migration....Pages 163-174
Languages, Their Features and Limitations....Pages 175-199
Automatic Persistence for Objective-C....Pages 201-222
Benchmark....Pages 223-244
Proposal to Add a Keyword to All OO Languages....Pages 245-250
The Future....Pages 251-255
Back Matter....Pages 257-263
β¦ Subjects
Data Storage Representation; Database Management; Operating Systems
π SIMILAR VOLUMES
For object-oriented programmers, application developers implementing persistent objects, and datastore providers wanting to plug into this service. This book describes the Object Management Groups standard for the Persistence Object Service (POS), and the client programming model, showing exactly h
For object-oriented programmers, application developers implementing persistent objects, and datastore providers wanting to plug into this service. This book describes the Object Management Groups standard for the Persistence Object Service (POS), and the client programming model, showing exactly h
NHibernate is an open source object-relational mapper, or simply put, a way to retrieve data from your database into standard .NET objects. Quite often we spend hours designing the database, only to go back and re-design a mechanism to access that data and then optimize that mechanism. This book wil