Git Product home page Git Product logo

tenantbase's Introduction

TenantBase Take Home Assignment

Implements a key-value storage server that speaks a small subset of the memcached protocol and persists data in SQLite. It also has a command line interface for seeing the cached content.

Installation

python main.py install <sqlite-database>

Usage example

To start the server, run:

python main.py serve <sqlite-database>

To view all the keys, run:

python main.py show <sqlite-database>

Implementation Notes

  1. This implementation assumes all keys are ASCII. In fact, it assumes the command lines are in ASCII. In order to handle arbitrary binary data, the database schema would have to be changed so the 'key' column is a binary BLOB and the parsing code would have to be changed to parse the binary values. However, this does not seem to be the intent of the original Memcache specification because it explicitly refers to keys as containing characters. It seems to be assuming an encoding of the data and ASCII seems like the most logical choice.

  2. With newer versions of SQLite, the set value operation can be greatly simplified by using one SQL statement by making use of ON CONFLICT UPDATE.

  3. This implementation makes use of Twisted to launch the server and handle the socket calls for accepting connections, reading and writing data.

Meta

Andy Agrawal โ€“ [email protected]

Distributed under the GPL v3 license. See LICENSE for more information.

tenantbase's People

Contributors

aagrawal2001 avatar

Watchers

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