Giter Site home page Giter Site logo

marvel2950 / key-value-data-store Goto Github PK

View Code? Open in Web Editor NEW
2.0 1.0 0.0 7 KB

A file-based key-value data store that supports the basic CRD (create, read, and delete) operations.

License: MIT License

Jupyter Notebook 100.00%
python filesystem json freshworks

key-value-data-store's Introduction

Key-Value-Data-Store

Freshworks Assignment

A file-based key-value data store that supports the basic CRD (create, read, and delete) operations.


Environment Setup

1. Clone the repository using the command -> git clone https://github.com/whoakarsh/Key-Value-Data-Store.git
2. Install Python3.6 or higher
3. Run __init__.py to run the backend server.


Accessing DataStore CRD operations as a library

1. A class named DataStore in the file __init__.py contains all the CRD operations.
2. A class function DataStore(file_path).create(key,value, time_to_live) can be used to create a data in DataStore.
3. A class function DataStore(file_path).read(key) can be used to read a data from the DataStore.
4. A class function DataStore(file_path).delete(key) can be used to delete a data from the DataStore.


Functional requirements

1. It can be initialized using an optional file path. If one is not provided, it will reliably create itself in a reasonable location on the laptop.
2. A new key-value pair can be added to the data store using the Create operation. The key is always a string capped at 32chars. The value is always a JSON obiect capped at 16KB.
3. If Create is invoked for an existing key, an appropriate crror must be returned.
4. A Read operation on a key can be performed by providing the key, and receiving the value in response, as a JSON object.
5. A Delete operntion can be performed by providing the key.
6. Every key supports setting a Time-To-Live property when it is created. This property is optional. If provided, it will be evaluated as an integer defining the number of seconds the key must be retained in the data store. Once the Time-TO-Live for a key has expired, the key will no longer be available for Read or Delete operations.
7. Appropriate error responses must always be returned to client if it uses the data store in unexpected ways or breaches any limits.


Non-functional requirements

1. The size of the file storing data must never exceed 1GB.
2. More than one client process cannot be allowed to use the same file as a data store at any given time.
3. A client process is allowed to access the data store using multiple threads, if it desires to the data store must therefore be thread-safe
4. The client will bear as little memory costs as possible to use this data store, while deriving maximum performance with respect to response times for accessing the data store.

key-value-data-store's People

Stargazers

 avatar  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.