2009-05-24 10 views
3

Ich habe einen Counter-Cache hinzugefügt, kann aber nicht aktualisiert werden. Aber ich kann das Elternelement aktualisieren - das Blogpostmodell, indem ich einen neuen Blogpost hinzufüge - und ich kann das untergeordnete - Kommentarmodell - aktualisieren, indem ich einen neuen Kommentar hinzufüge. Der Counter-Cache soll die Gesamtzahl der Kommentare pro Blogpost verfolgen, indem das Feld blog_posts.comments_count automatisch aktualisiert wird. Ich werde einige der Schritte skizzieren, die ich durchlaufen habe, und hoffentlich wird jemand etwas bemerken, das ich falsch gemacht habe. Der Schemadump ist am Ende.Counter-Cache wird nicht aktualisiert, aber ich kann auf dem Eltern- und dem Kind speichern

Ich habe ein Blog-Post-Modell:

class Post < ActiveRecord::Base 
    set_table_name("blog_posts") 
    belongs_to :author, :class_name => "User", :foreign_key => 'author_id' 
    has_many :comments, :class_name => "Comment", 
    :foreign_key => 'post_id', :order => "created_at desc", :dependent => :destroy 
    has_many :categorizations 
    has_many :categories, :through => :categorizations 
    named_scope :recent, :order => "created_at desc", :limit => 5 

end 

und Kommentare Modell mit einem counter_cache zum Post Modell gesetzt:

class Comment < ActiveRecord::Base 
    belongs_to :post, :class_name => "Post", :foreign_key => "post_id", :counter_cache => true 
    belongs_to :author, :class_name => "User", :foreign_key => "author_id" 
end 

ich eine Migration geschaffen, um die counter_cache Spalte zu dem blog_posts hinzufügen Tabelle:

Die Migration aktualisiert jedoch nicht die Blogposts mit dem aktuellen_ Anzahl. Es ist immer Null.

öffnete ich die Rails-Konsole bis zu versuchen, manuell update_attribute:

Loading development environment (Rails 2.3.2) 

>> p = Post.find 1 
p = Post.find 1 

=> #<Post id: 1, title: "test", content: "test", author_id: 1, status: "ok", created_at: "2009-05-21 19:27:14", updated_at: "2009-05-24 07:02:35", comments_count: 0> 

>> p.comments 
p.comments 

=> [#<Comment id: 5, post_id: 1, author_id: 1, content: "Fifth Comment", status: "ok", created_at: "2009-05-24 07:08:56", updated_at: "2009-05-24 07:08:56">, #<Comment id: 4, post_id: 1, author_id: 1, content: "Fourth Comment", status: "ok", created_at: "2009-05-24 07:05:32", updated_at: "2009-05-24 07:05:32">, #<Comment id: 3, post_id: 1, author_id: 1, content: "Third Comment", status: "ok", created_at: "2009-05-24 06:34:59", updated_at: "2009-05-24 06:34:59">, #<Comment id: 2, post_id: 1, author_id: 1, content: "Second Comment", status: "ok", created_at: "2009-05-24 05:20:43", updated_at: "2009-05-24 05:20:43">, #<Comment id: 1, post_id: 1, author_id: 1, content: "First Comment", status: "ok", created_at: "2009-05-21 19:27:14", updated_at: "2009-05-21 19:27:14">] 


>> p.comments.size 
p.comments.size 

=> 5 

>> p.comments_count 
p.comments_count 

=> 0 

>> p.update_attribute(:comments_count, 5) 
p.update_attribute(:comments_count, 5) 

=> true 

>> p.comments_count 
p.comments_count 

=> 5 

>> p.save 
p.save 

=> true 

Aber wenn ich in der Datenbank comments_count aussehen = 0.

würden Irgendwelche Ideen mehr als freudig geschätzt.

Mein schema.db sieht wie folgt aus:

ActiveRecord::Schema.define(:version => 20090524055907) do 

    create_table "blog_posts", :force => true do |t| 
    t.string "title",   :limit => 100, :default => "", :null => false 
    t.text  "content",          :null => false 
    t.integer "author_id",      :default => 0, :null => false 
    t.string "status",   :limit => 20, :default => "", :null => false 
    t.datetime "created_at" 
    t.datetime "updated_at" 
    t.integer "comments_count",    :default => 0, :null => false 
    end 

    add_index "blog_posts", ["author_id"], :name => "index_blog_posts_on_author_id" 

    create_table "categories", :force => true do |t| 
    t.string "name",  :limit => 50, :default => "", :null => false 
    t.string "short_name", :limit => 30, :default => "", :null => false 
    t.string "description",    :default => "", :null => false 
    t.datetime "created_at" 
    t.datetime "updated_at" 
    end 

    create_table "categories_posts", :force => true do |t| 
    t.integer "category_id", :null => false 
    t.integer "post_id",  :null => false 
    end 

    add_index "categories_posts", ["category_id"], :name => "index_categories_posts_on_category_id" 
    add_index "categories_posts", ["post_id"], :name => "index_categories_posts_on_post_id" 

    create_table "comments", :force => true do |t| 
    t.integer "post_id",     :default => 0, :null => false 
    t.integer "author_id",    :default => 0, :null => false 
    t.text  "content",         :null => false 
    t.string "status",  :limit => 25, :default => "", :null => false 
    t.datetime "created_at" 
    t.datetime "updated_at" 
    end 

    create_table "sessions", :force => true do |t| 
    t.string "session_id", :default => "", :null => false 
    t.text  "data" 
    t.datetime "created_at" 
    t.datetime "updated_at" 
    end 

    add_index "sessions", ["session_id"], :name => "index_sessions_on_session_id" 
    add_index "sessions", ["updated_at"], :name => "index_sessions_on_updated_at" 

    create_table "users", :force => true do |t| 
    t.string "username",  :limit => 25, :default => "", :null => false 
    t.string "hashed_password", :limit => 40, :default => "", :null => false 
    t.string "first_name",  :limit => 25, :default => "", :null => false 
    t.string "last_name",  :limit => 40, :default => "", :null => false 
    t.string "email",   :limit => 50, :default => "", :null => false 
    t.string "display_name", :limit => 25, :default => "", :null => false 
    t.integer "user_level",  :limit => 3, :default => 0, :null => false 
    t.datetime "created_at" 
    t.datetime "updated_at" 
    end 

end 
+0

Gibt es einen bestimmten Grund, warum die Tabelle für Ihr Post-Modell nicht als "Posts" bezeichnet werden kann? Und warum geben Sie den class_name und den foreign_key überall manuell an? Es sieht so aus, als ob Sie dies nur für Ihr Author-Modell tun sollten, das von einer "users" -Tabelle unterstützt wird. Es scheint eine Menge zu kämpfen gegen die Rails-Defaults. –

+0

Ich folge einem Tutorial, das Ihnen zeigt, wie Sie die Standardeinstellungen bei Bedarf umgehen können. –

+0

OK, aber für die meisten deiner Beispiele brauchst du das eigentlich nicht. –

Antwort

5

Werfen Sie einen Blick auf den aktualisierten Code von railscasts episode 23 auf counter_cache.

Die Zählerattribute sind attr_readonly. Vielleicht müssen Sie anstelle der Aktualisierungsattribute in Ihrer Migration update-counters verwenden?

+0

Gute Idee. Hat aber nicht funktioniert. Es wurde versucht, die Migration erfolgreich zu ändern: Post.update_counters (post.id,: comments_count => current_count). Keine Fehler oder irgendetwas - nur den comments_counter nicht aktualisiert. –

+1

Nun, es gibt keine Regel, dass Sie nur ein Problem haben. – srboisvert

+0

Sehr wahr. Ich werde ein anderes Mal von Grund auf neu überprüfen. –