2013年1月10日木曜日

vanityとchankoを使ってRailsで簡単安全にABテストをする

vanityはRailsのABテスト用ライブラリ。導入が一番簡単っぽい。
 元々はテキストとか画像をのABテストを行うためのもののようだが、 chankoという限定公開用のライブラリを使って、機能単位でもABテストができるようにしてみる。

まずはGemfileに
  1. gem 'chanko':git => 'git://github.com/cookpad/chanko.git'  
  2. gem "vanity"  
を記述して、
# bundle install

それぞれに必要な初期設定をする。
# rails generate chanko:install
# rails generate vanity
# rake db:migrate

config/vanity.ymlを作成
  1. development:  
  2.   adapter: active_record  
  3.   active_record_adapter: mysql2  
  4.   host: localhost  
  5.   database: DBNAME  
  6.   user: USERNAME  
  7.   password: PASSWORD  

development.rbに以下を記述
  1. Vanity.playground.collecting = true  

vanityのDashboard用コントローラを作成
  1. class VanityController < ApplicationController  
  2.   include Vanity::Rails::Dashboard  
  3. end   

ルーティングを設定
  1. match '/vanity(/:action(/:id(.:format)))':controller=>:vanity  

測定用のユーザアイデンティティを設定。
  1. class ApplicationController < ActionController::Base  
  2.   use_vanity :current_user  
  3. end  

Railsのルートディレクトリ下にテストと測定用のファイルを作成
#mkdir -p experiments/metrics

postした回数測定用のファイルを作成
experiments/metrics/post.rb
  1. metric "Post" do  
  2.   description "Postした回数"  
  3. end  

コントローラの好きな場所に、 track! :post を入力すれば、その場所がよばれた回数を測定できるようになります。
  1. class PostController < ApplicationController  
  2.   def create  
  3.      track! :post  
  4.        # ...投稿する処理  
  5.      end  
  6.   end  
  7. end  

テスト用ファイルを作成
experiments/post_labels.rb
  1. ab_test "Post labels" do  
  2.   description "テスト"  
  3.   alternatives truefalse  
  4.   metrics :post  
  5. end  

次にchanko用設定
# rails generate chanko sample
  1. module Sample  
  2.   include Chanko::Unit  
  3.   
  4.   active_if do |context, options|  
  5.     ab_test(:price_options)   
  6.   end  
  7.   scope(:controllerdo  
  8.     function(:controller_showdo  
  9.       # controller code here  
  10.     end  
  11.   end  
  12.   scope(:viewdo  
  13.     function(:view_showdo  
  14.       render :partial => "/show"  
  15.     end  
  16.   end  
  17. end  
で、好きな場所にinvoke(:sample, :controller_show) をおいたり、
invoke(:sample, :show) を置けばOK。
chankoの詳しい使い方はこちらを参考に。

どちらが優位かなんてのは、Vanityが表示してくるので、 評価しやすいはず。

production環境でうまく動かなかったので、
そのときはredisによる接続をためしてみるといいかも。
  1. production:  
  2.   adapter: redis  
  3.   host: localhost  



 参考:
http://eccyan.hatenablog.com/entry/2011/12/08/223603
https://github.com/assaf/vanity
http://webandy.com/articles/a-b-testing-with-vanity

0 件のコメント:

コメントを投稿