class TFSGraph::AbstractStore

Public Instance Methods

cache_all(attr_set) click to toggle source
# File lib/tfs_graph/abstract_store.rb, line 19
def cache_all(attr_set)
  attr_set.map {|attrs| cache(attrs) }
end
fetch_all() click to toggle source
# File lib/tfs_graph/abstract_store.rb, line 15
def fetch_all
  normalize root_query.run
end
fetch_and_cache() click to toggle source
# File lib/tfs_graph/abstract_store.rb, line 11
def fetch_and_cache
  cache_all fetch_all
end