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.
November 19, 2009 at 10:35 am
http://www.google.com/submityourcontent/index.html
November 19, 2009 at 10:51 am
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
November 19, 2009 at 11:29 am
just cache false instead of nil
result = cache xxx do
blub || false
end
if result.nil ?
November 19, 2009 at 11:39 am
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.
November 20, 2009 at 12:51 pm