tag corrections: remove distributed cache logic (#3943).

Remove logic for displaying the state of the tag category cache on both
servers.
This commit is contained in:
evazion
2018-10-04 13:46:10 -05:00
parent 4ab97a01bd
commit c78dece411
4 changed files with 22 additions and 49 deletions

View File

@@ -1,12 +1,15 @@
class TagCorrectionsController < ApplicationController
respond_to :html, :json, :xml
before_action :builder_only, only: [:new, :create]
def new
@correction = TagCorrection.new(params[:tag_id])
respond_with(@correction)
end
def show
@correction = TagCorrection.new(params[:tag_id])
respond_with(@correction)
end
def create

View File

@@ -1,42 +1,21 @@
class TagCorrection
attr_reader :tag_id, :tag, :hostname
include ActiveModel::Model
include ActiveModel::Serializers::JSON
include ActiveModel::Serializers::Xml
def initialize(tag_id, hostname = Socket.gethostname)
@tag_id = tag_id
attr_reader :tag
delegate :category, :post_count, :real_post_count, to: :tag
def initialize(tag_id)
@tag = Tag.find(tag_id)
@hostname = hostname
end
def to_json(options = {})
statistics_hash.to_json
def attributes
{ post_count: post_count, real_post_count: real_post_count, category: category, category_cache: category_cache, tag: tag }
end
def statistics_hash
@statistics_hash ||= {
"category_cache" => Cache.get("tc:" + Cache.hash(tag.name)),
"post_fast_count_cache" => Cache.get("pfc:" + Cache.hash(tag.name))
}
end
def fill_hash!
res = HTTParty.get("https://#{hostname}.#{Danbooru.config.domain}/tags/#{tag_id}/correction.json", Danbooru.config.httparty_options)
if res.success?
json = JSON.parse(res.body)
statistics_hash["category_cache"] = json["category_cache"]
statistics_hash["post_fast_count_cache"] = json["post_fast_count_cache"]
end
end
def each_server
Danbooru.config.all_server_hosts.each do |host|
other = TagCorrection.new(tag_id, host)
if host != Socket.gethostname
other.fill_hash!
end
yield other
end
def category_cache
Cache.get("tc:" + Cache.hash(tag.name))
end
def fix!

View File

@@ -2,18 +2,14 @@
<div id="a-new">
<h1>Fix Tag: <%= @correction.tag.name %></h1>
<% @correction.each_server do |server| %>
<div style="margin-bottom: 1em;">
<h2>Server: <%= server.hostname %></h2>
<ul>
<li><strong>category actual</strong>: <%= @correction.tag.category %></li>
<li><strong>category memcache</strong>: <%= server.statistics_hash["category_cache"] %></li>
<li><strong>post count memcache</strong>: <%= server.statistics_hash["post_fast_count_cache"] %></li>
<li><strong>post count db cache</strong>: <%= @correction.tag.post_count %></li>
<li><strong>post count actual:</strong> <%= @correction.tag.real_post_count %></li>
</ul>
</div>
<% end %>
<div style="margin-bottom: 1em;">
<ul>
<li><strong>category actual</strong>: <%= @correction.category %></li>
<li><strong>category memcache</strong>: <%= @correction.category_cache || "none" %></li>
<li><strong>post count db cache</strong>: <%= @correction.post_count %></li>
<li><strong>post count actual:</strong> <%= @correction.real_post_count %></li>
</ul>
</div>
<%= form_tag(tag_correction_path(:tag_id => @correction.tag.id)) do %>
<%= submit_tag "Fix" %>

View File

@@ -1,5 +0,0 @@
<%= raw @correction.to_json %>
<% content_for(:page_title) do %>
Tag Correction - <%= Danbooru.config.app_name %>
<% end %>