Code Monkey home page Code Monkey logo

CacheQL

CacheQL is an open-source library for server-side caching GraphQL queries. This specific repository used a Redis cache to test performance and functionality, but can be incorporated with other caching mechanisms and databases.

CacheQL is in beta. The founding team is actively working on new features to optimize the tool. All feedback is welcome. Please post issues directly to this GitHub.

Installation

Use the package manager npm to install CacheQL.

npm install cacheql

Usage

cacheQL.auth = () => {
  client = redis.createClient({
    port: redisPort,
    host: redisHost
  });

  hgetAsync = promisify(client.hget).bind(client);
  hgetAllAsync = promisify(client.hgetall).bind(client);

  client.auth(redisAuth, function(err, response) {
    if (err) {
      throw err;
    }
    console.log("Client Authenticated");
    return true;
  });
};

Connect to your specific Redis cache, and follow our code to set it up! Redis functions have issues with async, so we wrapped them in promisify, a method in the native 'util' library.

// Require in CacheQL 
const cacheQL = require('cacheql') 

obj.getPerson = async (args, root) => {

    // Checkify will check the Redis cache
    const query = root.body.query;

    // The second parameter in checkify it to enable/disable partial field detection
    const checkify = await cacheQL.checkify(query, true);
    
    // Not in the redis cache
    if (!checkify) {

    // Extract the fields with queryFields
      const fields = cacheQL.queryFields(query);
      
      let fieldsObj = {};

      for (let i = 0; i < fields.length; i++) {
        fieldsObj[fields[i]] = 1;
      }
    
    // Depends on the specific database that the developer decides to use
      const fromDB = await Person.findOne({ name: args.name }, fieldsObj)
        .populate()
        .exec();
    
    // Store the resposne in the cache on the way back to the client
      const cachifyResponse = await cacheQL.cachify(query, fromDB);
      return fromDB;
    }

    // The query response is in the redis cache, so return it from there
    else {
      return checkify;
    }
  }

Checkify will be run, then queryFields (for partial field validation), then cachify will store the response in the database on its way back to the user. The developer has an option to turn on partial query validation by specifying true/false as the second parameter in queryFields.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

cacheql's Projects

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.