mirror of https://github.com/rails/rails
Simple examples for require profiling
This commit is contained in:
parent
e8550ee032
commit
4f291fa528
|
@ -0,0 +1,14 @@
|
|||
$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
|
|
@ -0,0 +1,16 @@
|
|||
$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
|
|
@ -1,7 +1,7 @@
|
|||
#!/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
|
||||
|
|
Loading…
Reference in New Issue