> ## Documentation Index
> Fetch the complete documentation index at: https://docs.projectreal.gg/llms.txt
> Use this file to discover all available pages before exploring further.

# cache.iscached

> Verilen Instance icin Instance cache icinde non-nil bir girdi olup olmadigini dondurur.

<div className="real-function-page">
  ```lua theme={null}
  cache.iscached(instance: Instance): boolean
  ```

  ## Argümanlar

  <ParamField path={"instance"} type={"Instance"} required>
    Instance cache girdisi kontrol edilecek Instance.
  </ParamField>

  ## Dönüşler

  <ResponseField name={"cached"} type={"boolean"}>
    cache bu Instance icin non-nil bir girdi iceriyorsa True.
  </ResponseField>

  ## Örnek

  Bir Instance degerinin su anda Real Instance cache icinde bir girdisi olup olmadigini kontrol et.

  ```lua theme={null}
  local Players = game:GetService("Players")

  local cached = cache.iscached(Players)
  print(cached)

  cache.invalidate(Players)
  print(cache.iscached(Players))
  ```
</div>
