Initializer

init(memoryCapacity:diskCapacity:directory:)

Creates a URL cache object with the specified memory and disk capacities, in the specified directory. URLキャッシュオブジェクトをこの指定されたメモリとディスク容量で、指定されたディレクトリにおいて作成します。

Declaration 宣言

convenience init(memoryCapacity: Int, diskCapacity: Int, directory: URL? = nil)

Parameters パラメータ

memoryCapacity

The memory capacity of the cache, in bytes. キャッシュのメモリ容量、バイト数で。

diskCapacity

The disk capacity of the cache, in bytes. キャッシュのディスク容量、バイト数で。

directory

The path to an on-disk directory, where the system stores the on-disk cache. If directory is nil, the cache uses a default directory. ディスク上のディレクトリへのパス、そこでシステムはディスク上キャッシュを格納します。directorynilならば、キャッシュは省略時のディレクトリを使います。

Discussion 議論

A disk cache measured in the tens of megabytes is acceptable in most cases. 10メガバイトで計られるディスクキャッシュは、ほとんどの場合に受け入れられるものです。

See Also 参照

Creating a New Cache Object 新しいキャッシュオブジェクトを作成する