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))