月別アーカイブ: 2007年2月
相関サブクエリで行と行を比較する
キャッシュクリア時にサイトをシャットダウンする
You can shut down the website during the cleaning process with:
$ symfony disable frontend
$ symfony clear cache
$ symfony enable frontend
applicationごとにsessionを分けるには?
Factories
myapp/config/factories.yml
storage: class: sfSessionStorage param: session_name: symfony
session_nameをアプリケーションごとに分ける。
サブドメインでセッションを共有する方法は以下を参照。
サブドメインでセッションを共有する
Yahoo Pipes
複数のデータベース接続
複数のデータベース接続は、複数のschema.ymlを使用し、それぞれに別のconnection名をつける。
Extended Schema Syntax - The Definitive Guide to symfony Chapter 8 - Inside The Model Layer
注意点
・複数のschemaを使用する場合は、schema.ymlという名前は使わない
全てにプレフィックスをつける。プレフィックスのないschema.ymlがあると、propel-build-sqlが動作しないようだ。
例:
admin-schema.yml
client-schema.yml
・パッケージを分ける
パッケージ名は、xxx-schema.ymlのconnectionの_attributesに加える。
例:
admin-schema.yml
admin:
_attributes: { noXsd: false, package: lib.model.admin }
client-schema.yml
client:
_attributes: { noXsd: false, package: lib.model.client }
・loadData()には第2引数に接続名を渡す
$data = new sfPropelData();
//$data->setDeleteCurrentData(false);
$data_dir = sfConfig::get('sf_data_dir').DIRECTORY_SEPARATOR.'fixtures'.DIRECTORY_SEPARATOR.'admin';
$data->loadData($data_dir, 'admin');
登録したドメイン名が使えるようになるまでの手順とは
DNSワイルドカードの使用に関するアーキテクチャ上の懸念について
digコマンドとは
propelのBaseクラスファイルに詳細なコメントを付加する
config/propel.ini
propel.builder.addComments = true