Sha256: 63485d6161f6f039cfd16e8116179276bb14775d5f0e200fba78f2742a3658d8
Contents?: true
Size: 1.34 KB
Versions: 1
Compression:
Stored size: 1.34 KB
Contents
= Toystore An object mapper for anything that can read, write and delete data. See examples/ for potential direction. The idea is that any key-value store (via adapters) that supports read, write, delete will work (memcache, membase, mongo, redis, couch, toyko. Potentially even RESTFUL services or sqlite with a single key-value table?) == Identity Map By default, Toystore has identity map turned on. It assumes that any Toystore model has a unique id across all models. This means you either need to use the default uuid id's, object_id's (included), some other unique id, or create your own key factory that namespaces to model (see examples). You also need to clear the map before each request. For this, there is a provided piece of middleware that you can use. use(Toy::Middleware::IdentityMap) It is autoloaded, so just add it to your config.ru or sinatra/rails app as you would any other middleware and you are good to go. == Note on Patches/Pull Requests * Fork the project. * Make your feature addition or bug fix. * Add tests for it. This is important so we don't break it in a future version unintentionally. * Commit, do not mess with rakefile, version, or history. (if you want to have your own version, that is fine, but bump version in a commit by itself so we can ignore when we pull) * Send us a pull request. Bonus points for topic branches.
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
toystore-0.6.3 | README.rdoc |