Memory
in package
AbstractYes
メモリ使用状況のあれこれ。
原則使用しない。
Tags
Table of Contents
Methods
- getAllocate() : int
- システム割り当てメモリ量を取得。
- getPeakAllocate() : int
- スクリプトのシステム割り当てメモリ最大使用量を取得。
- getPeakUsage() : int
- スクリプトのメモリ最大使用量を取得。
- getUsage() : int
- 現在の使用メモリ量を取得。
Methods
getAllocate()
システム割り当てメモリ量を取得。
public
static getAllocate() : int
memory_get_usage(false)
ラッパー。
Tags
Return values
intgetPeakAllocate()
スクリプトのシステム割り当てメモリ最大使用量を取得。
public
static getPeakAllocate() : int
memory_get_peak_usage(true)
ラッパー。
Tags
Return values
intgetPeakUsage()
スクリプトのメモリ最大使用量を取得。
public
static getPeakUsage() : int
memory_get_peak_usage(false)
ラッパー。
Tags
Return values
intgetUsage()
現在の使用メモリ量を取得。
public
static getUsage() : int
memory_get_usage(false)
ラッパー。