タグ

RubyとRedisに関するtote102のブックマーク (3)

  • 文字列型 — redis 2.0.3 documentation

    文字列型¶ 文字列型はRedisで扱う型の中で最も基的なものです。Redis文字列型はバイナリセーフです。つまりRedis文字列型はどんな種類のデータも保持できるということです。たとえばJPEGイメージやシリアライズされたRubyオブジェクトなども持つことができます。 文字列は最大1GBまで扱うことが出来ます。 文字列型は INCR コマンド群からは整数値として扱われます。この点において、整数値は符号付き64bit値に制限されます。 Redisリスト型、Redisセット型、Redisソート済みセット型、Redisハッシュ表型で保持される各要素はRedis文字列型であることを覚えておいてください。 実装の詳細¶ Redis文字列型は sds.c (simple dynamic strings) という動的文字列ライブラリを用いて実装されています。このライブラリは文字列のある時点での長さをキ

  • A Ruby client for Redis

    redis-rb A Ruby client library for the Redis key-value store. A note about versions Versions 1.0.x target all versions of Redis. You have to use this one if you are using Redis < 1.2. Version 2.0 is a big refactoring of the previous version and makes little effort to be backwards-compatible when it shouldn't. It does not support Redis' original protocol, favoring the new, binary-safe one. You shou

  • GitHub - defunkt/resque: Moved to resque/resque

    You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

    GitHub - defunkt/resque: Moved to resque/resque
  • 1