Class Rddb::MaterializationStore::Base
In: lib/rddb/materialization_store.rb
Parent: Object

Base class for materialization stores. Materialization stores are used to store materialized views.

Methods

delete   exists?   find   store  

Public Instance methods

Delete the materialization of the named view.

[Source]

    # File lib/rddb/materialization_store.rb, line 19
19:       def delete(name)
20:         raise_abstract_error('delete')
21:       end

Return true if the materialization of the named view exists in storage.

[Source]

    # File lib/rddb/materialization_store.rb, line 24
24:       def exists?(name)
25:         raise_abstract_error('exists?')
26:       end

Find the materialization of the view.

[Source]

    # File lib/rddb/materialization_store.rb, line 9
 9:       def find(name)
10:         raise_abstract_error('find')
11:       end

Store the materialization of the view.

[Source]

    # File lib/rddb/materialization_store.rb, line 14
14:       def store(view)
15:         raise_abstract_error('store')
16:       end

[Validate]