Sha256: 0a83590094a6b2d9e6f3ddef4ba34f218d6d2455d652806cd6ab91eb948dc443

Contents?: true

Size: 1.16 KB

Versions: 6

Compression:

Stored size: 1.16 KB

Contents

require 'dry/types'
require 'virtus'
require 'fast_attributes'
require 'attrio'
require 'ostruct'

require 'benchmark/ips'

class VirtusUser
  include Virtus.model

  attribute :name, String
  attribute :age, Integer
end

class FastUser
  extend FastAttributes

  define_attributes initialize: true, attributes: true do
    attribute :name, String
    attribute :age,  Integer
  end
end

class AttrioUser
  include Attrio

  define_attributes do
    attr :name, String
    attr :age, Integer
  end

  def initialize(attributes = {})
    self.attributes = attributes
  end

  def attributes=(attributes = {})
    attributes.each do |attr,value|
      self.send("#{attr}=", value) if self.respond_to?("#{attr}=")
    end
  end
end

class DryTypesUser < Dry::Types::Struct
  attributes(name: 'string', age: 'form.int')
end

puts DryTypesUser.new(name: 'Jane', age: '21').inspect

Benchmark.ips do |x|
  x.report('virtus') { VirtusUser.new(name: 'Jane', age: '21') }
  x.report('fast_attributes') { FastUser.new(name: 'Jane', age: '21') }
  x.report('attrio') { AttrioUser.new(name: 'Jane', age: '21') }
  x.report('dry-types') { DryTypesUser.new(name: 'Jane', age: '21') }

  x.compare!
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
dry-types-0.8.1 benchmarks/basic.rb
dry-types-0.8.0 benchmarks/basic.rb
dry-types-0.7.2 benchmarks/basic.rb
dry-types-0.7.1 benchmarks/basic.rb
dry-types-0.7.0 benchmarks/basic.rb
dry-types-0.6.0 benchmarks/basic.rb