1
0
Fork 0

Remove caching

This commit is contained in:
Andrew Tomaka 2015-11-03 13:24:10 -05:00
parent c5816a3f43
commit 1302454e5e
2 changed files with 4 additions and 8 deletions

View File

@ -1,12 +1,10 @@
class Api::V1::CardsController < Api::V1::BaseController
before_action :set_card, only: [:show]
def index
@cards = Rails.cache.fetch('api_all_cards', expires_in: 2.minutes) do
Card.includes(:character, :rarity, :type, :leader_skill,
:passive_skill, :super_attack, :awaken_type,
:dokkan_card, :hp_stat, :atk_stat, :def_stat,
:links)
end
@cards = Card.includes(:character, :rarity, :type, :leader_skill,
:passive_skill, :super_attack, :awaken_type,
:dokkan_card, :hp_stat, :atk_stat, :def_stat,
:links)
render json: @cards, root: false
end

View File

@ -13,8 +13,6 @@ Rails.application.configure do
# Full error reports are disabled and caching is turned on.
config.consider_all_requests_local = false
config.action_controller.perform_caching = true
config.perform_caching = true
config.cache_store = :memory_store
# Enable Rack::Cache to put a simple HTTP cache in front of your application
# Add `rack-cache` to your Gemfile before enabling this.