remove
キャッシュからキーを削除する
説明
例
キャッシュからキーを削除する
永続性プロバイダーとして 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)) tt = table(keys(c), get(c,keys(c))','VariableNames',{'Keys','Values'})
tt = 5×2 table Keys Values __________ ____________ 'keyFive' [5×5 double] 'keyFour' [1×2 double] 'keyOne' [ 10] 'keyThree' [ 30] 'keyTwo' [ 20]
キャッシュ c
から 2 つのキーを削除し、キャッシュ内の残りのキーと値を MATLAB table として表示します。
num = remove(c,{'keyThree','keyFour'}) tt = table(keys(c), get(c,keys(c))','VariableNames',{'Keys','Values'})
num = int64 2 tt = 3×2 table Keys Values _________ ____________ 'keyFive' [5×5 double] 'keyOne' [ 10] 'keyTwo' [ 20]
入力引数
c
— データ キャッシュ
永続性プロバイダー固有のデータ キャッシュ オブジェクト
永続性プロバイダー固有のデータ キャッシュ オブジェクトによって表されるデータ キャッシュ。
現在、サポートされている永続性プロバイダーは Redis と MATLAB のみです。このため、キャッシュ オブジェクトのタイプは mps.cache.RedisCache
または mps.cache.MATFileCache
です。
例: c
keys
— 削除するキー
文字ベクトルの cell 配列
キャッシュから削除するキー。文字ベクトルの cell 配列として指定します。
例: {'keyThree','keyFour'}
出力引数
num
— 削除したキーの数
整数
削除したキーの数。整数として返されます。
バージョン履歴
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)