提交 4f291fa5 编写于 作者: J Jeremy Kemper

Simple examples for require profiling

上级 e8550ee0
$LOAD_PATH.unshift "#{File.dirname(__FILE__)}/../lib"
require 'active_record'
class Person < ActiveRecord::Base
establish_connection :adapter => 'sqlite3', :database => 'foobar.db'
connection.create_table table_name, :force => true do |t|
t.string :name
end
end
bob = Person.create!(:name => 'bob')
puts Person.all.inspect
bob.destroy
puts Person.all.inspect
$LOAD_PATH.unshift "#{File.dirname(__FILE__)}/../lib"
require 'active_resource'
require 'active_resource/http_mock'
require 'active_support/core_ext/hash/conversions'
ActiveSupport::XmlMini.backend = ENV['XMLMINI'] || 'REXML'
ActiveResource::HttpMock.respond_to do |mock|
mock.get '/people/1.xml', {}, { :id => 1, :name => 'bob' }.to_xml(:root => 'person')
end
class Person < ActiveResource::Base
self.site = 'http://localhost/'
end
bob = Person.find(1)
puts bob.inspect
#!/usr/bin/env ruby
# Example:
# ruby -Iactivesupport/lib tools/profile_requires.rb active_support
# ruby -Iactionpack/lib tools/profile_requires.rb action_controller
# tools/profile_requires activesupport/lib/active_support.rb
# tools/profile_requires activeresource/examples/simple.rb
abort 'Use REE so you can profile memory and object allocation' unless GC.respond_to?(:enable_stats)
GC.enable_stats
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册