Package Exports
- learn-redis
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (learn-redis) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Learn Redis
Need to store/access your data as fast as possible? Try Redis!
Why?
Storing data is a necessity for all (but the simplest) web applications.
💻 📱 ⌚ 📷 📹 >
💾 & 📂 > 😄
Often accessing that data can be the biggest bottleneck
in an app causing it to be slow and painful experience. ⌛ 💤 😢
Redis is designed to be the fastest way to store and retrieve data. 🚀
Which means less waiting for the people using your app! 👏 😀
What?
(A Tutorial using Redis with Node.js)
Which Node.js Module?
- hiredis-node https://github.com/redis/hiredis-node is a JS wrapper
around the hiredis C Library.
This means its much faster than "Pure JavaScript" code. Its faster, so what's the catch?