Pylons+memcacheDB...プロジェクト設置

Pylonsなので簡単。

$ paster create -t pylons PhoneBook
Selected and implied templates:
  Pylons#pylons  Pylons application template

Variables:
  egg:      PhoneBook
  package:  phonebook
  project:  PhoneBook
Enter template_engine (mako/genshi/jinja2/etc: Template language) ['mako']:
Enter sqlalchemy (True/False: Include SQLAlchemy 0.5 configuration) [False]: True

memcacheDBを使うけど、こいつは一覧表示も検索もできないデータベースなので、一覧表示や検索はSQLAlchemy経由でやる....つもり。とりあえずTrueと答えておこう。

Gitコミット先