Coder Social home page Coder Social logo

shards-cpp's Introduction

SHARDS-cpp

This is an implementation of the miss ratio curve online construction technique SHARDS in C++. It is heavily inspired in SHARDS-C, a fanmade implementation in C.

Integration through CMake

include_subdirectory(path/to/SHARDS-cpp)
# or find_package(Shards REQUIRED) if you instead installed Shards in your system
target_link_libraries(your_target Shards)

How to use SHARDS

After including the header file, you can use SHARDS by using a building function for the desired strategy: Fixed Rate or Fixed Size. Example code:

#include <cstdint>
#include <Shards/Shards.h>

int main() {

    Shards * shards = Shards::fixedSize(...);
    // or Shards * shards = Shards::fixedRate(...);

    // On lookups
    std::string const key = ...;
    shards->feed(key);

    // Generate Miss Ratio Curve
    std::map<uint32_t, double> mrc = shards->mrc();

    // Reset internal state if desired
    shards->clear();

    delete shards;

    return 0;
} 

shards-cpp's People

Contributors

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