最終更新日 :
2021年4月28日
|
次にも適用 : ColdFusion
説明
現在のキャッシュエンジンが使用しているプロパティを返します。ColdFusion では、次のキャッシュエンジンを使用できます。
- Ehcache(デフォルトのキャッシュエンジン)
- JCS
- Memcached
- Redis
- カスタムキャッシュプラグイン
戻り値
単一属性の構造体(name)。
カテゴリ
シンタックス
CacheGetEngineProperties()
関連項目
例
<cfscript> WriteDump(CacheGetEngineProperties()); // Returns the properties of the cache engine WriteOutput("The caching engine currently used is: " & CacheGetEngineProperties().name); // Returns the name of the cache engine </cfscript>
出力