bytes
各キーに保存される値に対して使用されるストレージのバイト数を返す
説明
例
キャッシュ内の値に対して使用されるストレージのバイト数の取得
永続性プロバイダーとして Redis™ を使用する永続性サービスを開始します。このサービスには、接続名と開いたポートが必要です。サービスが実行中になったら、接続名を使用してサービスに接続し、キャッシュを作成できます。
ctrl = mps.cache.control('myRedisConnection','Redis','Port',4519); start(ctrl) c = mps.cache.connect('myCache', 'Connection', 'myRedisConnection');
キーと値をキャッシュに追加してから、キャッシュ内の各キーに保存された値に対して使用されるストレージのバイト数を取得します。キーと、キーの各値に対して使用されるバイト数を MATLAB® table として表します。
put (c,'keyOne',10,'keyTwo',20,'keyThree',30,'keyFour',[400 500],'keyFive',magic(5)) b = bytes(c,{'keyOne','keyTwo','keyThree','keyFour','keyFive'}) tt = table(keys(c), bytes(c,keys(c))','VariableNames',{'Keys','Bytes'})
b = 72 72 72 80 264 tt = 5×2 table Keys Bytes __________ ______ 'keyFive' 264 'keyFour' 80 'keyOne' 72 'keyThree' 72 'keyTwo' 72
入力引数
c
— データ キャッシュ
永続性プロバイダー固有のデータ キャッシュ オブジェクト
永続性プロバイダー固有のデータ キャッシュ オブジェクトによって表されるデータ キャッシュ。
現在、サポートされている永続性プロバイダーは Redis と MATLAB のみです。このため、キャッシュ オブジェクトのタイプは mps.cache.RedisCache
または mps.cache.MATFileCache
です。
例: c
keys
— キー
文字ベクトルの cell 配列
すべてのキーのリスト。文字ベクトルの cell 配列として指定します。
例: {'keyOne','keyTwo','keyThree','keyFour','keyFive'}
出力引数
b
— バイト数
数値の行ベクトル
キーに関連付けられた各値に使用されるバイト数。数値の行ベクトルとして返されます。
出力ベクトルのバイト数は、対応する入力キーと同じ順序で表示されます。b(i)
は keys(i)
のバイト数です。
バージョン履歴
R2018b で導入
MATLAB コマンド
次の MATLAB コマンドに対応するリンクがクリックされました。
コマンドを MATLAB コマンド ウィンドウに入力して実行してください。Web ブラウザーは MATLAB コマンドをサポートしていません。
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)