Project

perforated

0.01
No commit activity in last 3 years
No release in over 3 years
Intellgent json collection caching
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
~> 3

Runtime

 Project Readme

Build Status Code Climate Gem Version

Perforated

The most expensive part of serving a JSON request is converting the serialized records into JSON. Perforated cache handles the messy task of storing and retrieving all JSON for a particular set of models as effeciently as possible. It achieves this several ways:

  1. Storing final json output, not marshalled objects
  2. Retrieving the json for as many objects at once as is possible, and then filling in the remaining json as if it was always there. This is where the term 'perforated' comes from.

Configuration

Perforated is mildly configurable, mostly to allow for easy testing. However, if you are so inclined you can customize the backing cache. The default cache store is ActiveSupport::Cache::MemoryStore, which is fast but has no persistence.

Within a Rails project the simplest option is to lock with the Rails cache:

Perforated.configure do |config|
  config.cache = Rails.cache
end

Outside of a rails project you may wish to use something like Dalli by itself:

Perforated.configure do |config|
  config.cache = ActiveSupport::Cache::DalliStore.new('localhost')
end

The standard library's JSON parser is great for most usage, and thus it is the default. However, sometimes you may want a bit more control or performance:

require 'oj'

Perforated.configure do |config|
  config.json = Oj
end

Usage

Wrap any collection that you want to serialize in a cache instance and then to_json on it. Not much to it!

perforated = Perforated::Cache.new(my_collection)
perforated.to_json

Any objects that have been cached will be retrieved unaltered. Any missing objects (cache misses) will be serialized, inserted back into the collection, and written into the cache.

Perforated supports reconstructing rooted objects, the likes of which can be output by ActiveModelSerializers. Serialized object collections may also have associations serialized within the same cache key. After the cached objects are fetched they will be merged together into flattened namespaces. For example, given a serialized representation like this:

{ "posts":   { "id": 1, "author_id": 1, "title": "Greatness" },
  "authors": [{ "id": 1, "name": "Myself" }] }

{ "posts":   { "id": 2, "author_id": 2, "title": "Failure" },
  "authors": [{ "id": 2, "name": "Somebody" }] }

The reconstructed and flattened represenation can be retrieved:

perforated.to_json(rooted: true) #=> {
  "posts": [
    { "id": 1, "author_id": 1, "title": "Greatness" },
    { "id": 2, "author_id": 2, "title": "Failure" }
  ],
  "authors": [
    { "id": 1, "name": "Myself" },
    { "id": 2, "name": "Somebody" }
  ]
}

Custom Key Strategy

The default cache key strategy is to delegate back to each object to construct its own cache key. This is useful for an object like a serializer that can implement it's own cache_key method.

class MySerializer
  attr_reader :object

  def initialize(object)
    @object = object
  end

  def cache_key
    [object, scope]
  end
end

However, if you are just serializing models or objects that don't have a custom cache method you can provide a custom key caching strategy.

module CustomStrategy
  def self.expand_cache_key(object)
    [object.id, object.updated_at].join('/')
  end
end

perforated = Perforated.new(array, CustomStrategy)

Installation

Add this line to your application's Gemfile:

gem 'perforated'

And then execute:

$ bundle

Or install it yourself as:

$ gem install perforated

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request