Giter VIP home page Giter VIP logo

db-dev's Introduction

Database Development

Preliminary Notes

1. Persistence

A database will recover to a usable state when started after an unexpected shutdown. While we can achieve it without a database as follows:

  • Write the whole updated dataset to a file
  • Call fsync on the new file
  • Overwrite the old file by renaming the new file to the old file, which is guarenteed by the file-systems to be atomic.

But this is only acceptable with a tiny dataset. Databases can do incremental updates.

2. Indexing

There are two distinct types of database queries: analytical (OLAP) and transactional (OLTP).

  • Analytical (OLAP) queries typically involve a large amount of data, with aggregation, grouping or join operations
  • In contrast, transactional (OLTP) queries usually only touch a small amount of indexed data. The most common types of queres are indexed point queries and indexed range queries.

Data structures that persist on disk to look up data are called indexes in database systems. And database indexes can be larger than memory.

Common data structures include B-Trees and LSM-Trees

3. Concurrency

Modern applications do not do everything sequentially, and nor do databases. There are different levels to concurrency :

  • Concurrency between readers
  • Concurrency between readers and writers
  • Do writers need exclusive access to the database ?

db-dev's People

Contributors

iamriteshkoushik avatar

Stargazers

Ashwin Narayanan S avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.