The Artima Developer Community
Sponsored Link

Ruby Buzz Forum
Finally switched to Mephisto

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Jonathan Weiss

Posts: 146
Nickname: jweiss
Registered: Jan, 2006

Jonathan Weiss is a Ruby and BSD enthusiast
Finally switched to Mephisto Posted: Aug 27, 2007 1:05 PM
Reply to this message Reply

This post originated from an RSS feed registered with Ruby Buzz by Jonathan Weiss.
Original Post: Finally switched to Mephisto
Feed Title: BlogFish
Feed URL: http://blog.innerewut.de/feed/atom.xml
Feed Description: Weblog by Jonathan Weiss about Unix, BSD, security, Programming in Ruby, Ruby on Rails and Agile Development.
Latest Ruby Buzz Posts
Latest Ruby Buzz Posts by Jonathan Weiss
Latest Posts From BlogFish

Advertisement

After a long period of painful slowdowns due to Typo's caching I finally switched to Mephisto.

Typo created massive amounts of cached paged for each spammer request and this slowed down the whole machine. I had to manually rm -rf the cache directory every now and then.

The switch to Mephisto should be seemless as I migrated all old URLs with Mephisto's redirect handling:

> tail config/environment.rb

# Typo style article URLs
Mephisto::Routing.redirect '/articles/*' => '/$1'

# Typo pages
Mephisto::Routing.redirect '/pages/*' => '/$1'

# Typo feeds
Mephisto::Routing.redirect '/xml/rss' => '/feed/atom.xml'
Mephisto::Routing.redirect '/xml/rss/feed.xml' => '/feed/atom.xml'
Mephisto::Routing.redirect '/xml/rss/comments/feed.xml' => '/feed/all_comments.xml'
Mephisto::Routing.redirect '/xml/rss20/feed.xml' => '/feed/atom.xml'
Mephisto::Routing.redirect '/xml/rss20/comments/feed.xml' => '/feed/all_comments.xml'
Mephisto::Routing.redirect '/xml/atom/feed.xml' => '/feed/atom.xml'
Mephisto::Routing.redirect '/xml/atom/comments/feed.xml' => '/feed/all_comments.xml'
Mephisto::Routing.redirect '/xml/commentrss/feed.xml' => '/feed/all_comments.xml'

I you experience any problems with the URL handling, please contact me.

Read: Finally switched to Mephisto

Topic: Tweets on 2007-08-24 Previous Topic   Next Topic Topic: Slides from Chaotic Agility talk at Agile RTP

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use