MCPcopy Create free account
hub / github.com/alibaba/GraphScope / _async_fetch_succ_cache

Method _async_fetch_succ_cache

python/graphscope/nx/classes/cache.py:329–330  ·  view source on GitHub ↗
(self, gid)

Source from the content-addressed store, hash-verified

327 self.futures["node_attr"] = self.executor.submit(self._get_node_attr_cache, gid)
328
329 def _async_fetch_succ_cache(self, gid):
330 self.futures["succ"] = self.executor.submit(self._get_succ_cache, gid)
331
332 def _async_fetch_pred_cache(self, gid):
333 self.futures["pred"] = self.executor.submit(self._get_pred_cache, gid)

Callers 2

warmupMethod · 0.95
align_succ_cacheMethod · 0.95

Calls 1

submitMethod · 0.65

Tested by

no test coverage detected