CodeIgniter2.Xでのmemcacheを使用する場合の方法
- 2011.05.12 (木) 11:51
- PHP
- codeigniter,memcached,PHP
CodeIgniter2.Xになって新しくキャッシュドライバが追加されているので設定メモ
application/config/memcached.phpを作成する
設定する項目は
1.hostname
2.port
3.weight
もし上記が指定されていない場合は、以下のデフォルト値が使用される
hostname => ’127.0.0.1′,
port => 11211,
weight => 1,
設定の例
1 2 3 4 5 6 |
$config['memcache01']['hostname'] = '192.168.1.101', $config['memcache01']['port'] = 11211, $config['memcache01']['weight'] = 0, $config['memcache02']['hostname'] = '192.168.1.102', $config['memcache02']['port'] = 11211, $config['memcache02']['weight'] = 0, |
ちなみに、
Memcached::OPT_LIBKETAMA_COMPATIBLE
これを設定しておかないとサーバー台数の増減があった場合に、今までのキャッシュが有効的に使用されない。
このライブラリの中では何もオプションは設定されていないので、必要に応じて個人で設定する必要がある。
が・・・設定方法がないな・・・。
symfonyのアプリケーションの作成
symfonyでのアプリケーションの作成方法です。
1 |
php symfony generate:app [アプリケーション名] |
symfonyでのプロジェクトの作成
symfonyでのプロジェクトの作成方法
1 |
php lib/vendor/symfony/data/bin/symfony generate:project [プロジェクト名] --orm=Propel |
ORMをPropelでプロジェクトを作成するにはこのようにするべし
symfonyのコマンド一覧
symfonyのコマンド一覧です。
とりあえず備忘録
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
Usage: symfony [options] task_name [arguments] Options: --help -H Display this help message. --quiet -q Do not log messages to standard output. --trace -t Turn on invoke/execute tracing, enable full backtrace. --version -V Display the program version. --color Forces ANSI color output. --xml To output help as XML Available tasks: :help Displays help for a task :list Lists tasks app :routes Displays current routes for an application cache :clear Clears the cache (cc) configure :author Configure project author generate :app Generates a new application :module Generates a new module :project Generates a new project :task Creates a skeleton class for a new task i18n :extract Extracts i18n strings from php files :find Finds non "i18n ready" strings in an application log :clear Clears log files :rotate Rotates an application's log files plugin :add-channel Add a new PEAR channel :install Installs a plugin :list Lists installed plugins :publish-assets Publishes web assets for all plugins :uninstall Uninstalls a plugin :upgrade Upgrades a plugin project :clear-controllers Clears all non production environment controllers :deploy Deploys a project to another server :disable Disables an application in a given environment :enable Enables an application in a given environment : optimize Optimizes a project for better performance :permissions Fixes symfony directory permissions :send-emails Sends emails stored in a queue :validate Finds deprecated usage in a project symfony :test Launches the symfony test suite test :all Launches all tests :coverage Outputs test code coverage :functional Launches functional tests :unit Launches unit tests |