GithubHelp home page GithubHelp logo

ar_memoization's Introduction

Qiita: https://qiita.com/ysat/items/d8a1590891b472cc60d3

ar_memoization

ArMemoization is a library for memoize ActiveRecord objects and search there.

This library has two modules.

  • ArMemoization::PrimaryMethods
  • ArMemoization::ForeignMethods

PrimaryMethods module contains methods to memoize Model instances.
This module is used for the Model of a table that hardly changes data.

ForeignMethods module contains methods that handle the memoized data of the Model using PrimaryMethods.
This module is used in the Model that belongs_to the Model that uses PrimaryMethods.

example

migration

class CreateAllTables < ActiveRecord::Migration[5.0]
  def self.up
    create_table(:countries) do |t|
      t.string :name
    end

    create_table(:shops) do |t|
      t.belongs_to :country
      t.string :name
    end
  end
end

app/models/country.rb

class Country < ActiveRecord::Base
  extend ArMemoization::PrimaryMethods
end

app/models/shop.rb

class Shop < ActiveRecord::Base
  extend ArMemoization::ForeignMethods
  belongs_to_memoized :country
end

ar_memoization's People

Contributors

ysat avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.