Giter Club home page Giter Club logo

node-redis-pooless's Introduction

node-redis-pooless

Redis pool less is a wrapper in redis client to handle connections in serverless and stateless environment. Servers running in stateless env such as google cloud functions, aws, serverless and kind of servers, can have this wrapper to open/close connection in a controlled env.

Install

yarn add node-redis-pooless or npm install node-redis-pooless

Important

  • We don't use connection pool because it is stateful and serverless is stateless.
  • As serverless is a quick way execution you must code the callback as simple as possible to return/execute the redis client call.
  • A best scenario is to have unlimited connections once stateless doesn't work with connection pool. So you might want to work with no connection problems, if you can predict the number of connections, you might not have any problems with this wrapper.

Code use example

const value = await redis(async (client)=>{
  return client.get(key)
})

await redis(async (client)=>{
  return client.set(key,value)
})

Documentation

You may want to check https://github.com/redis/node-redis to find all redis functions available in client.

Troubleshooting

  • Check the url to connect to redis server is working under google cloud functions environment variables.
  • To customize you can fork/clone this project and adapt to your necessity since it's lightweight by now.

TODO (PR)

  • Remove functions google cloud from code
  • Get URL from other place

node-redis-pooless's People

Contributors

faustoct1 avatar

Stargazers

 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.