Help
One project is releasing soon but has not yet been indexed by Google, what's the best way to get Google to index the website quickly?
How do people distinguish between nil and a cache miss when using Memcached and Ruby?
- Some suggested using a
:symbolto representnil
form_for @object sometimes posts to the wrong action, has anybody else seen this?

Re: Google indexing, I always add analytics and webmaster services to the domain and seem to get indexed quickly, maybe that will help if you haven't already done so.
http://www.google.com/submityourcontent/index.html
One project is releasing soon but has not yet been indexed by Google, what's the best way to get Google to index the website quickly?
A. link to the website from an important page, that is visited by google's spider frequently
just cache false instead of nil
result = cache xxx do blub || false end if result.nil ?
We tracked down the issue that we thought was a "form_for" problem. It ended up being an SSL requirement + page caching collision. Clearly, SSL requirement will be ignored if you do page caching, so it's important to think about that. We're going with not page caching our #new forms for the moment.