-
Notifications
You must be signed in to change notification settings - Fork 254
Sequel
Barry Allard edited this page Mar 23, 2016
·
9 revisions
The following currently results in a database locked
error
require 'sequel'
require 'parallel'
DB = Sequel.connect('sqlite://wontwork.sqlite3')
DB.create_table!(:users) do
primary_key :id
String :name, null: false
index :name, unique: true
end
DB.create_table!(:posts) do
primary_key :id
Integer :user_id, null: false, index: true
end
class User < Sequel::Model(DB)
one_to_many :posts
end
class Post < Sequel::Model(DB)
many_to_one :user
end
users = %w[geroge william joe bob jane mary sue sally wilma]
Parallel.each(users, in_threads: 5) do |name|
u = User.find_or_create(name: name)
Parallel.each(1000.times, in_threads: 10) { u.add_post({}) }
end