get
キャッシュからキーの値を取得
説明
例
キャッシュからのキー値の取得
永続性プロバイダーとして Redis™ を使用する永続性サービスを開始します。このサービスには、接続名と開いたポートが必要です。サービスが実行中になったら、接続名を使用してサービスに接続し、キャッシュを作成できます。
ctrl = mps.cache.control('myRedisConnection','Redis','Port',4519); start(ctrl) c = mps.cache.connect('myCache', 'Connection', 'myRedisConnection');
キーと値をキャッシュに追加します。
put(c,'keyOne',10,'keyTwo',20,'keyThree',30,'keyFour',[400 500],'keyFive',magic(5))
すべてのキーと関連付けられた値を取得し、それらを MATLAB® table として表示します。
k = keys(c) v = get(c,{'keyOne','keyTwo','keyThree','keyFour','keyFive'}) tt = table(keys(c), get(c,keys(c))','VariableNames',{'Keys','Values'})
k = 5×1 cell array {'keyFive' } {'keyFour' } {'keyOne' } {'keyThree'} {'keyTwo' } v = 1×5 cell array {[10]} {[20]} {[30]} {1×2 double} {5×5 double} tt = 5×2 table Keys Values __________ ____________ 'keyFive' [5×5 double] 'keyFour' [1×2 double] 'keyOne' [ 10] 'keyThree' [ 30] 'keyTwo' [ 20]
入力引数
c
— データ キャッシュ
永続性プロバイダー固有のデータ キャッシュ オブジェクト
永続性プロバイダー固有のデータ キャッシュ オブジェクトによって表されるデータ キャッシュ。
現在、サポートされている永続性プロバイダーは Redis と MATLAB のみです。このため、キャッシュ オブジェクトのタイプは mps.cache.RedisCache
または mps.cache.MATFileCache
です。
例: c
keys
— キー
文字ベクトルの cell 配列
キャッシュから値を取得するキーの cell 配列。
例: {'keyOne','keyTwo','keyThree','keyFour','keyFive'}
出力引数
values
— 値
cell 配列
キーに関連付けられた値のリスト。cell 配列として返されます。
バージョン履歴
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)