Giter Club home page Giter Club logo

icedb's Introduction

IceDB:

This is the main repository for IceDB, a Key-Value Store Database Management System built as a part of the course CS254 (DBMS Lab), CSE Dept, NITK.

Code:

Build Instructions:

Make sure the current working directory is the main IceDB directory before running these commands:

For the normal build, use the following commands:

$ autoreconf -i
$ ./configure
$ make

This will place object files and other build related files inside the root directory of the repository.

For the VPATH build, to make sure that the root directory of the repository is clean, run the following commands:

$ autoreconf -i
$ mkdir build
$ cd build
$ ../configure
$ make

Use sudo make install if the application needs to be installed globally.

Repo Structure:

The Repo follows a standard C++ Project structure with:

  1. bin: For storing binaries after compilation.
  2. build: For storing object files generated during build.
  3. docs: For storing documentation.
  4. include: For storing header files.
  5. lib: For storing dependencies as static libraries.
  6. src: For storing source files.

The build is handled by autotools.

Dependencies:

All of these applications and libraries need to be installed before building IceDB.

  • autoconf (>= 2.69)
  • automake (>= 1.15)
  • Libtool (>= 2.4.6)
  • pkg-config
  • libreadline-dev (Development files for GNU readline)

Encryption:

The master branch doesn't have encryption support. In order to build the application without encryption support:

git clone https://github.com/suhasks123/IceDB.git

For encryption support, clone the encryption-support branch:

git clone -b encryption-support https://github.com/suhasks123/IceDB.git

Databases are essentially encrypted when the code from the encryption-support branch is used.

Documentation:

The report for the project is contained in the docs/ directory in the repository.

Contributors:

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.