I hereby claim:
- I am bacarini on github.
- I am bacarini (https://keybase.io/bacarini) on keybase.
- I have a public key ASC1xhENiRu9cJDI9REX52GPjPXm3cQND9EwUYyI86OIJgo
To claim this, I am signing this object:
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: n8n-deployment | |
namespace: standard | |
labels: &labels | |
app: n8n | |
component: deployment | |
spec: |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
class Comment < Sequel::Model | |
set_dataset MyApp::SequelDb.alt_db[:comments] | |
end |
RSpec.configure do |config| | |
config.before(:suite) do | |
DatabaseCleaner[:sequel].strategy = :transaction | |
end | |
config.before(:each) do | |
DatabaseCleaner[:sequel, {:connection => MyApp::SequelDb.main_db}].start | |
DatabaseCleaner[:sequel, {:connection => MyApp::SequelDb.alt_db}].start | |
end |
MyApp::SequelDb["SELECT * FROM posts WITH (NOLOCK);"].all |
require 'sequel' | |
require_relative '../../config/initializers/sequel_init' | |
namespace :db do | |
desc 'Load the seed data from db/seeds.rb' | |
task seed: :environment do | |
require 'sequel/extensions/seed' | |
Sequel.extension :seed | |
Sequel::Seeder.apply(MyApp::SequelDb.main_db, "db/seeds") |
class Post < Sequel::Model(:posts) | |
end |
before_fork do |_, _| | |
MyApp::SequelDb.disconnect_all | |
end | |
after_fork do |_, _| | |
MyApp::SequelDb.start_connections | |
end |
require ‘sequel’ | |
module MyApp | |
class SequelDb | |
class << self | |
attr_reader :main_db, :alt_db | |
def start_connections | |
@main_db ||= establish_connection | |
@alt_db ||= establish_connection('alternative-database-name') |