vote up 1 vote down star
1

Hello,

I'm trying to set blog postings to publish at certain dates in the future. I have in my Posting model:

 named_scope :published, :conditions => ["publish_at <= ?", Time.now]

I'm using this in my controller to call the published postings:

  @postings = Posting.published

The development server works fine, but I believe the production server needs me to refresh the cache (using "pkill -9 dispatch.fcgi") or I won't see the new postings when it's supposed to publish.

Is there any way to set future times for the postings' publishing dates correctly on the production server? Do I have to refresh the cache every time?

flag

2 Answers

vote up 3 vote down check

You are correct, because the named scope is evaluated when the class loads.

You should re-write it to be dynamic or (maybe better) use the database's now() function.

Either of these should work:

named_scope :published, lambda { :conditions => ["publish_at <= ?", Time.now] }

Note how this uses a lambda to always return the current time in the conditions hash.

named_scope :published, :conditions => "publish_at <= now()"

This is database dependent (the above should work for MySQL) but probably a tiny bit faster.

link|flag
Interesting. Doesn't seem to be described that way here: api.rubyonrails.org/classes/ActiveRecord/… – Ron Gejman Nov 5 at 2:54
Thanks so much Luke! I'll test that and see if it works. Thank you so much. – sjsc Nov 5 at 2:55
Thanks Luke! You're lifesaver! It works perfectly =) Thank you! – sjsc Nov 5 at 3:16
No problem. I ran into a very similar issue a few months ago so I'd already been through it. – Luke Francl Nov 7 at 3:24
vote up 0 vote down

Check to see if you have any of the following statements in your production environment:

 ActionController::Base.cache_store = :memory_store

OR

 ActionController::Base.cache_store = :file_store, "/path/to/cache/directory"

OR

 ActionController::Base.cache_store = :mem_cache_store

OR any other setting for ActionController::Base.cache_store

link|flag
Hi Ron. I don't have any of those. I only these: config.cache_classes = true config.action_controller.consider_all_requests_local = false config.action_controller.perform_caching = true – sjsc Nov 5 at 2:34
Hmm, I'm not sure why you're seeing this effect. – Ron Gejman Nov 5 at 2:38
It seems like it doesn't publish instantly (I did see a post whose publishing date was a few hours prior publish okay). I'm thinking that maybe it just takes a few hours or so before Rails resets or something. – sjsc Nov 5 at 2:44
My first thought was that it was taking a while to refresh SQL cache, but those are supposed to be expunged at the end of each request. Are you sure you don't have any caching set up? No memcached or similar? – Ron Gejman Nov 5 at 2:46
By "taking a while" I mean "until the process died" since you mentioned that killing the process was effective. – Ron Gejman Nov 5 at 2:47
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.