Search Results

3
votes
3answers
663 views

What’s the best way to hash a url in ruby?

I'm writing a web app that points to external links. I'm looking to create a non-sequential, non-guessable id for each document that I can use in the URL. I did the obvious thing: treating the url …
0
votes
6answers
212 views

How to ensure only one instance of a ruby script is running at a time

I have a process that runs on cron every five minutes. Usually, it takes only a few seconds to run, but sometimes it takes several minutes. I want to ensure that only one version of this is running …
3
votes
4answers
855 views

How to prevent browser page caching in Rails

Ubuntu -> Apache -> Phusion Passenger -> Rails 2.3 The main part of my site reacts to your clicks. So, if you click on a link, it will send you on to the destination, and instantly regenera …
3
votes
5answers
711 views

How to get Phusion Passenger, MySQL and Rails to play nicely in production

I've written a rails app that's been running fine for a while without a database. Now, I'm dropping the registration database into the mix. It's not working in production. Everything works fine, of …
1
vote

How to ensure only one instance of a ruby script is running at a time

Ok, working off notes from @shodanex's pointer, here's what I have. I rubied it up a little bit (though I don't know of a touch analogue in Ruby). tmp_file = File.expand_path(File.d …
0
votes

How to prevent browser page caching in Rails

Alas. Neither of these suggestions forced the behavior I'm looking for. Maybe there's a javascript answer? I could have rails write out a timestamp in a comment, then have the javascript ch …
1
vote

How to prevent browser page caching in Rails

Finally figured this out - http://blog.serendeputy.com/posts/how-to-prevent-browsers …
6
votes

How to get Phusion Passenger, MySQL and Rails to play nicely in production

Figured it out. Woo Hoo! Summary: Ruby Enterprise Edition (update, thanks Hongli!) has its own set of gems. Even though I was updating the gem, it wasn't the one that Passenger was reading. …