Cache
cache.iscached
返回给定 Instance 在 Instance cache 中是否有 non-nil 条目。
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
返回给定 Instance 在 Instance cache 中是否有 non-nil 条目。
cache.iscached(instance: Instance): boolean
local Players = game:GetService("Players")
local cached = cache.iscached(Players)
print(cached)
cache.invalidate(Players)
print(cache.iscached(Players))