Advertisement
Advertisement

More Related Content

Advertisement

Recently uploaded(20)

Redis - From LAMP to NoSQL (CloudTW meetup-14)

  1. From LAMP to NoSQL York Tsai, http://about.me/yorktsai
  2. What is Redis?
  3. REmote DIctionary Server Redistribute
  4. Memcache with rich data structure
  5. Why Redis?
  6. Our Database
  7. Performance
  8. http://www.ruturaj.net/redis-memcached-tokyo-tyrant-mysql- comparison
  9. http://antirez.com/post/redis-memcached-benchmark.html
  10. Rich Data Structure
  11. Well-Documented with Time-Complexity!!
  12. Zero-Configuration > Make
  13. Examples
  14. Cache a value
  15. Cache a value, DEL/EXPIRE a set redis > EXPIRE myhash 3600 (integer) 1 redis > DEL myhash (integer) 1
  16. List / Queue / Stack
  17. Sets
  18. Sorted Sets
  19. Real-World Examples
  20. Cache Statistics https://gist.github.com/1272511
  21. Cache X Recent Records https://gist.github.com/1272508
  22. When not to Use Redis?
  23. If your data cannot fit into memory. (MMap is no longer supported after 2.6)
  24. Frequently Asked Questions
  25. Multi-core? Open multiple instances
  26. Persistence? Append-only Files (Or Snapshot)
  27. Replication? Master-Slave
  28. Transaction? MULTI / EXEC + WATCH
  29. Not in this talk ● Pub/Sub (publish / subscribe) ● Redis Cluster (Incoming)
  30. Thank You!
Advertisement