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

Method _async_fetch_pred_cache

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

Source from the content-addressed store, hash-verified

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)
334
335 def _async_fetch_succ_attr_cache(self, gid):
336 self.futures["succ_attr"] = self.executor.submit(self._get_succ_attr_cache, gid)

Callers 1

align_pred_cacheMethod · 0.95

Calls 1

submitMethod · 0.65

Tested by

no test coverage detected