GithubHelp home page GithubHelp logo

qwiq's Introduction

Qwiq

Qwiq is an open source quick in-memory data store, used as a cache broker.

Qwiq solves the problem where you are in need of larger number of data from the cache broker where normal requests such as HTTP aren't as optimized as you wish.

With Qwiq, you dont send and receive stored data between the Client application and Qwiq cache. Instead pointer adresses are sent from Qwiq cache, so the Client can read the data directly from the allocated memory.

HTTP is used to send and receive pointers between the Client and Qwiq.

Since the client is reading from another process, it needs to be runned with Administrator rights.

Store data

var client = new Qwiq.QwiqClient(port: 1988);
await client.Connect();
await client.AddAsync("my-key", veryBigList);

Under the hood:

The client will break down myObject into bytes and tell Qwiq to allocate that number of bytes and connect the allocated memory address to the specific KEY.

Qwiq returns the address of that allocated space and the Client can write that object into Qwiq's process memory.

Reading data

var client = new Qwiq.QwiqClient(port: 1988);
await client.Connect();
var veryBigList = await client.GetAsync<List<MyObject>>("my-key");

Under the hood:

Client asks Qwiq what the pointeraddress is for "my-key". Client will get the pointer address and the size in bytes for that object. When the bytes are read from Qwiq memory, the client will build (MyObject)myObject from the bytes.

Speed test result with 100 000 objects

qwiq's People

Contributors

henke164 avatar

Watchers

James Cloos 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.