| Class | Rddb::ViewStore::RamViewStore |
| In: |
lib/rddb/view_store/ram_view_store.rb
|
| Parent: | Base |
Delete the view.
# File lib/rddb/view_store/ram_view_store.rb, line 22
22: def delete(name)
23: views.delete(name)
24: end
Return true if the view exists in storage.
# File lib/rddb/view_store/ram_view_store.rb, line 27
27: def exists?(name)
28: views.key?(name)
29: end
Find the view.
# File lib/rddb/view_store/ram_view_store.rb, line 12
12: def find(name)
13: views[name]
14: end