Module: Sequel::SchemaCaching

Defined in:
lib/sequel/extensions/schema_caching.rb

Instance Method Summary collapse

Instance Method Details

#dump_schema_cache(file) ⇒ Object

Dump the cached schema to the filename given in Marshal format.



49
50
51
52
# File 'lib/sequel/extensions/schema_caching.rb', line 49

def dump_schema_cache(file)
  File.open(file, 'wb'){|f| f.write(Marshal.dump(@schemas))}
  nil
end

#dump_schema_cache?(file) ⇒ Boolean

Dump the cached schema to the filename given unless the file already exists.

Returns:

  • (Boolean)


56
57
58
# File 'lib/sequel/extensions/schema_caching.rb', line 56

def dump_schema_cache?(file)
  dump_schema_cache(file) unless File.exist?(file)
end

#load_schema_cache(file) ⇒ Object

Replace the schema cache with the data from the given file, which should be in Marshal format.



62
63
64
65
# File 'lib/sequel/extensions/schema_caching.rb', line 62

def load_schema_cache(file)
  @schemas = Marshal.load(File.read(file))
  nil
end

#load_schema_cache?(file) ⇒ Boolean

Replace the schema cache with the data from the given file if the file exists.

Returns:

  • (Boolean)


69
70
71
# File 'lib/sequel/extensions/schema_caching.rb', line 69

def load_schema_cache?(file)
  load_schema_cache(file) if File.exist?(file)
end