JP3287300B2 - Temporary storage area management method and device, and machine-readable recording medium recording program - Google Patents

Temporary storage area management method and device, and machine-readable recording medium recording program

Info

Publication number
JP3287300B2
JP3287300B2 JP03385498A JP3385498A JP3287300B2 JP 3287300 B2 JP3287300 B2 JP 3287300B2 JP 03385498 A JP03385498 A JP 03385498A JP 3385498 A JP3385498 A JP 3385498A JP 3287300 B2 JP3287300 B2 JP 3287300B2
Authority
JP
Japan
Prior art keywords
data
storage area
temporary storage
stored
time
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Expired - Fee Related
Application number
JP03385498A
Other languages
Japanese (ja)
Other versions
JPH11219315A (en
Inventor
淳裕 田中
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
NEC Corp
Original Assignee
NEC Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by NEC Corp filed Critical NEC Corp
Priority to JP03385498A priority Critical patent/JP3287300B2/en
Publication of JPH11219315A publication Critical patent/JPH11219315A/en
Application granted granted Critical
Publication of JP3287300B2 publication Critical patent/JP3287300B2/en
Anticipated expiration legal-status Critical
Expired - Fee Related legal-status Critical Current

Links

Description

【発明の詳細な説明】DETAILED DESCRIPTION OF THE INVENTION

【0001】[0001]

【発明の属する技術分野】本発明は、情報処理装置の一
時記憶領域を有効に利用する技術に関する。
The present invention relates to a technique for effectively using a temporary storage area of an information processing device.

【0002】[0002]

【従来の技術】従来のキャッシュ管理手法・装置やバッ
ファ管理手法・装置において、限られた大きさの一時記
憶領域(キャッシュ・バッファ)を有効利用する際に用
いられる手法としては、LRU(Least Recently Used)
法やLFU(Least FrequentlyUsed) 法が用いられてき
た。
2. Description of the Related Art In a conventional cache management method / device or buffer management method / device, as a method used when a temporary storage area (cache buffer) having a limited size is effectively used, LRU (Least Recently) is used. Used)
The method and the LFU (Least Frequently Used) method have been used.

【0003】即ち、LRU法においては、参照しようと
するデータが一時記憶領域に存在せず、且つ上記データ
を保存するための空きが一時記憶領域に存在しない場合
は、一時記憶領域に保存されているデータの内の、最近
最も使われていないデータを選択し、そのデータを本来
の記憶領域に戻したり若しくは無効化することにより、
一時記憶領域に空きを確保するようにしている。また、
LFU法においては、一時記憶領域に保存されているデ
ータの内の、最も参照頻度の少ないデータを選択し、そ
のデータを本来の記憶領域に戻したり若しくは無効化す
ることにより空きを確保するようにしている。
That is, in the LRU method, if the data to be referred to does not exist in the temporary storage area, and if there is no space for storing the data in the temporary storage area, the data is stored in the temporary storage area. By selecting the least recently used data from the existing data and returning that data to the original storage area or invalidating it,
Free space is secured in the temporary storage area. Also,
In the LFU method, data with the least frequency of reference is selected from the data stored in the temporary storage area, and the data is returned to the original storage area or invalidated to secure a free space. ing.

【0004】LRU法においては、頻繁に参照するデー
タであっても、たまたま参照しない期間が長く続いてし
まった場合には、そのデータは一時記憶領域から追い出
されてしまうという欠点がある。また、LFU法におい
ては、或る一定期間において頻繁に参照したデータは、
たとえそれ以降参照することがなくとも、長期間一時記
憶領域中に残ってしまうという欠点がある。このよう
に、従来のLRU法やLFU法では、一時記憶領域を有
効に利用することが困難であった。
[0004] The LRU method has a disadvantage that even if data is frequently referred to, if the period during which the data is not referred to happens for a long time, the data is expelled from the temporary storage area. Further, in the LFU method, data frequently referred to during a certain period is
Even if it is not referred to thereafter, it remains in the temporary storage area for a long time. As described above, it is difficult for the conventional LRU method or LFU method to effectively use the temporary storage area.

【0005】このような欠点を克服するための手法とし
て、1993年、エーシーエム、シグモッド・コンファレン
ス(1993 ACM SIGMOD Conf.)の論文集の297 〜306 頁に
記載されている次の論文による手法が知られている。El
izabeth J.O'Neil, Patric E.O'Neil,Gerhard Weikum
著、「The LRU-K Page Replacement Algorithm For Dat
abase Disk Buffering」。
As a method for overcoming such a drawback, a method based on the following paper described in 1993, ACM SIGMOD Conf. Are known. El
izabeth J.O'Neil, Patric E.O'Neil, Gerhard Weikum
Author, The LRU-K Page Replacement Algorithm For Dat
abase Disk Buffering ".

【0006】これは、バッファ(一時記憶領域)中のデ
ータを参照した最近k回の時刻を各データ毎に保存し、
バッファに空きを作る際には、k回前に参照した時刻が
最も古いもの、即ち「現在時刻−k回前の参照時刻」が
最も大きいものを選ぶという手法である。この手法にお
いて、k=1とした場合が、通常のLRU法に相当す
る。尚、以下の説明においては、上記した手法をLRU
−K法と呼ぶことにする。
[0006] This is to store the k most recent times referring to the data in the buffer (temporary storage area) for each data,
When making an empty space in the buffer, a method is used in which the time point referred to k times earlier is the oldest, that is, the current time minus the reference time point k times earlier is selected. In this method, the case where k = 1 is equivalent to the ordinary LRU method. In the following description, the above method is referred to as LRU
-Called the K method.

【0007】一方、特開平7−152649号公報に
は、データの本来の記憶領域(主記憶装置等)に対する
アクセス時間(参照コスト)を考慮したキャッシング方
法が記載されている。参照コストを考慮してキャッシン
グを行うことにより、参照コストが異なる記憶領域を備
えているNUMA(NonUniform Memory Access)マシン等
のシステムにおいては、参照コストを考慮しない場合に
比較して一時記憶領域を有効利用することが可能にな
る。しかし、上記公報に記載されているキャッシング方
法は、キャッシュメモリに空きを確保する場合、キャッ
シュメモリに保存されているデータの内の、参照コスト
が大きいデータは残し、参照コストが小さいデータは捨
てるという単純なものであり、データの参照履歴は全く
考慮していない。
On the other hand, Japanese Patent Application Laid-Open No. 7-152649 describes a caching method in which an access time (reference cost) to an original data storage area (main storage device or the like) is considered. By performing caching in consideration of the reference cost, in a system such as a NUMA (Non Uniform Memory Access) machine having storage areas with different reference costs, the temporary storage area is effective compared to a case where the reference cost is not considered. It can be used. However, in the caching method described in the above publication, when securing a free space in the cache memory, data having a high reference cost among data stored in the cache memory is left, and data having a low reference cost is discarded. It is simple and does not consider the data reference history at all.

【0008】[0008]

【発明が解決しようとする課題】LRU−K法によれ
ば、LRU法,LFU法の欠点を解決することができる
が、次のような欠点がある。上述したように、k=1と
した場合は、通常のLRU法に相当し、また、kの値が
余り大きくない場合は、過去の履歴をほとんど考慮しな
いことになるので、性能的には、LRU法と大差がな
い。そこで、LRU法の欠点を解決するためには、kの
値を大きなものにすることが必要となる。しかし、kの
値を大きなものにすると、各データ毎に、最近k回の参
照時刻を記録しておくことが必要なLRU−K法では、
参照時刻を管理するためのハードウェア規模が大きくな
ったり、データを管理するための処理が複雑になってし
まう。また、LRU−K法では、参照回数がk回に達し
ていないデータを取り扱うことができないという問題も
ある。
According to the LRU-K method, the disadvantages of the LRU method and the LFU method can be solved, but there are the following disadvantages. As described above, the case where k = 1 is equivalent to the normal LRU method, and when the value of k is not so large, the past history is hardly considered, so that in terms of performance, There is not much difference from the LRU method. Therefore, in order to solve the disadvantage of the LRU method, it is necessary to increase the value of k. However, if the value of k is increased, the LRU-K method, which needs to record the latest k reference times for each data,
The hardware scale for managing the reference time becomes large, and the processing for managing the data becomes complicated. Further, the LRU-K method has a problem that data whose reference count does not reach k times cannot be handled.

【0009】そこで、本発明の目的は、ハードウェア規
模を大きくすることなく、且つ処理を複雑にすることな
く、一時記憶領域を有効利用できるようにすることにあ
る。
An object of the present invention is to make it possible to effectively use a temporary storage area without increasing the hardware scale and without complicating the processing.

【0010】また、本発明の別の目的は、参照コストが
異なる記憶領域を有するシステムにおいて、一時記憶領
域を有効利用できるようにすることにある。
Another object of the present invention is to enable a temporary storage area to be effectively used in a system having storage areas having different reference costs.

【0011】[0011]

【課題を解決するための手段】本発明の一時記憶領域の
管理方法は、参照コストが異なる記憶領域を有するシス
テムにおいて、ハードウェア規模を大きくしたり、処理
を複雑にすることなく、一時記憶領域を有効利用できる
ようにするため、データが一時的に保存される一時記憶
領域の管理方法において、前記一時記憶領域に保存され
た各データそれぞれについて、前記一時記憶領域に最初
に保存されたときの保存時刻と、参照回数と、本来の記
憶領域に対するアクセス時間を示す参照コストとを管理
し、前記一時記憶領域に空きを作ることが必要になった
場合、前記一時記憶領域に保存されているデータの中か
ら、前記管理している保存時刻と参照回数とを考慮する
ことにより決まる参照間隔の推定値を参照コストで正規
化したときの値が大きいデータを選択し、該選択したデ
ータが保存されている部分を空きにする。
According to the method of managing a temporary storage area of the present invention , a system having storage areas having different reference costs is provided.
In order to make it possible to effectively use the temporary storage area without increasing the hardware scale or complicating the processing, the method for managing the temporary storage area in which data is temporarily stored includes the steps of: For each data stored in the area, the storage time when first stored in the temporary storage area, the reference count, and the original
And managing the reference cost indicating the access time to the storage area, and when it becomes necessary to make an empty space in the temporary storage area, from among the data stored in the temporary storage area, The estimated value of the reference interval determined by considering the time and the number of references is normalized by the reference cost.
The data having a large value at the time of conversion is selected, and a portion where the selected data is stored is made empty.

【0012】[0012]

【0013】また、本発明の一時記憶領域の管理装置
は、参照コストが異なる記憶領域を有するシステムにお
いて、ハードウェア規模を大きくしたり、処理を複雑に
することなく、一時記憶領域を有効利用できるようにす
るため、データが一時的に保存される一時記憶領域を管
理する一時記憶領域の管理装置において、前記一時記憶
領域に保存された各データそれぞれについて、前記一時
記憶領域に最初に保存されたときの保存時刻と、参照回
数と、本来の記憶領域に対するアクセス時間を示す参照
コストとを管理する管理表と、前記一時記憶領域に空き
を作ることが必要になった場合、前記一時記憶領域に保
存されているデータの中から、前記管理表で管理してい
る保存時刻と参照回数とを考慮することにより決まる参
照間隔の推定値を参照コストで正規化したときの値が
きいデータを選択し、該選択したデータが保存されてい
る部分を空きにする管理手段とを備えている。
Further, the temporary storage area management device of the present invention is applicable to a system having storage areas having different reference costs.
And a temporary storage area management device that manages a temporary storage area in which data is temporarily stored so that the temporary storage area can be used effectively without increasing the hardware scale or complicating the processing. In each of the data stored in the temporary storage area, a reference time indicating a storage time when the data is first stored in the temporary storage area, a reference count, and an access time to the original storage area.
A management table for managing costs, and when it is necessary to make room in the temporary storage area, from the data stored in the temporary storage area, the storage time managed in the management table and Selects data having a large value when the estimated value of the reference interval determined by considering the number of times of reference is normalized by the reference cost , and makes the portion where the selected data is saved empty. Management means.

【0014】この構成においては、管理表が、一時記憶
領域に保存された各データそれぞれについて、一時記憶
領域に最初に保存された時の保存時刻と、参照回数と
本来の記憶領域に対するアクセス時間を示す参照コスト
を管理し、管理手段が、一時記憶領域に空きを作るこ
とが必要になった場合、一時記憶領域に保存されている
データの中から、管理表で管理している保存時刻と参照
回数とを考慮することにより決まる参照間隔の推定値
参照コストで正規化したときの値が大きなものを選択
し、選択したデータが保存されている部分を空きにす
る。
In this configuration, the management table stores, for each data stored in the temporary storage area, a storage time when the data is first stored in the temporary storage area, a reference count ,
Reference cost indicating the access time to the original storage area
When it becomes necessary for the management means to make room in the temporary storage area, the storage time and the number of times of reference managed in the management table are selected from the data stored in the temporary storage area. estimate of the reference interval determined by considering the the
A value having a large value when normalized by the reference cost is selected, and a portion where the selected data is stored is made empty.

【0015】[0015]

【0016】[0016]

【0017】[0017]

【発明の実施の形態】次に本発明の実施の形態について
図面を参照して詳細に説明する。
Embodiments of the present invention will now be described in detail with reference to the drawings.

【0018】図1は本発明の前提となる技術を説明する
ためのブロック図である、演算装置1および一時記憶装
置2を含む情報処理装置5と、記憶装置3と、情報処理
装置4と、記録媒体6とから構成されている。
FIG. 1 illustrates a technique on which the present invention is based .
, An information processing device 5 including an arithmetic device 1 and a temporary storage device 2, a storage device 3, an information processing device 4, and a recording medium 6.

【0019】情報処理装置5内の一時記憶装置2は、参
照データを一時的に保存するための一時記憶領域23
と、データを管理するための管理情報を持つ管理表22
と、管理表22を利用して一時記憶領域23を管理する
管理手段21とから構成される。演算装置1は、プログ
ラムや情報処理装置5の利用者の指示に基づいて、記憶
装置3に蓄えられているデータや、他の情報処理装置4
が生成するデータを参照して処理を進める。
The temporary storage device 2 in the information processing device 5 has a temporary storage area 23 for temporarily storing reference data.
And management table 22 having management information for managing data
And a management unit 21 that manages the temporary storage area 23 using the management table 22. The arithmetic device 1 stores data stored in the storage device 3 or another information processing device 4 based on a program or an instruction of a user of the information processing device 5.
The process proceeds with reference to the data generated by.

【0020】情報処理装置5に接続されている記録媒体
6は、ディスク,半導体メモリ,その他の記録媒体であ
り、コンピュータによって構成される情報処理装置5を
一時記憶領域の管理装置として動作させるためのプログ
ラムが記録されている。このプログラムは、情報処理装
置5によって読み取られ、情報処理装置5の動作を制御
することで、情報処理装置5上に管理手段21を実現す
る。
The recording medium 6 connected to the information processing device 5 is a disk, a semiconductor memory, or another recording medium, and is used for operating the information processing device 5 constituted by a computer as a temporary storage area management device. The program has been recorded. This program is read by the information processing device 5 and controls the operation of the information processing device 5 to realize the management unit 21 on the information processing device 5.

【0021】管理表22は、少なくとも一時記憶領域2
3に保存されているデータの管理情報を持つことが必要
である。一時記憶領域23に保存されているデータの管
理情報を持っていれば、それに加えて一時記憶領域23
から追い出されたデータ(過去に一時記憶領域23に保
存されていたデータ)についての管理情報を持っていて
も構わない。
The management table 22 includes at least the temporary storage area 2
It is necessary to have the management information of the data stored in No.3. If the management information of the data stored in the temporary storage area 23 is provided,
May have management information on data that has been evicted from (data previously stored in the temporary storage area 23).

【0022】管理表22で管理する管理情報は、図2に
示すように、管理項目として、データを区別するための
識別子IDと、そのデータの最新の参照時刻TRと、そ
のデータを一時記憶領域23に最初に保存したときの時
刻(保存時刻)TFと、保存時刻TFから現時点までの
データの参照回数nとを含んでいる。ここで、識別子I
Dとしては、例えば、データの本来の保存位置を示す情
報を使用することができる。データの本来の保存位置
が、例えば、記憶装置3上の第100番地であれば、そ
のことを示す情報を識別子IDとすることができる。ま
た、保存時刻TFについてであるが、管理表22が、演
算装置1によって参照される全てのデータに対する管理
情報を保存するのに十分な大きさを持っている場合は、
上述したように、データを一時記憶領域23に最初に保
存した時の時刻を示すものとなるが、管理表22が十分
な大きさを持っていない場合は、データが一時記憶領域
23から追い出された後に、再度一時記憶領域23に保
存された時の時刻を示すものになることがある。
As shown in FIG. 2, the management information managed by the management table 22 includes, as management items, an identifier ID for distinguishing data, the latest reference time TR of the data, and a temporary storage area. 23 includes the time (storage time) TF at the time of first storage and the number n of data references from the storage time TF to the current time. Where the identifier I
As D, for example, information indicating the original storage location of the data can be used. If the original storage location of the data is, for example, address 100 on the storage device 3, information indicating that can be used as the identifier ID. Regarding the storage time TF, if the management table 22 is large enough to store management information for all data referenced by the arithmetic device 1,
As described above, this indicates the time when the data is first stored in the temporary storage area 23. However, if the management table 22 is not large enough, the data is evicted from the temporary storage area 23. After that, it may indicate the time when the data is stored in the temporary storage area 23 again.

【0023】図2に示した管理表22の内容例は、識別
子IDが「A100」のデータは、最近の参照時刻T
R,保存時刻TF,参照回数nがそれぞれ「t1」,
「t2」,「10」で、識別子ID「A50」のデータ
は、最近の参照時刻TR,保存時刻TF,参照回数nが
それぞれ「t3」,「t4」,「5」であることを示し
ている。
In the example of the contents of the management table 22 shown in FIG. 2, the data whose identifier ID is "A100"
R, the storage time TF, and the reference count n are “t1”,
The data of the identifier ID “A50” at “t2” and “10” indicates that the latest reference time TR, storage time TF, and reference count n are “t3”, “t4”, and “5”, respectively. I have.

【0024】次に、動作を説明する。尚、以下の説明に
おいては、一時記憶領域23に保存される各参照データ
のサイズは、全て等しいものとする。
[0024] Next, a description will be given of operation. In the following description, it is assumed that the size of each reference data stored in the temporary storage area 23 is all equal.

【0025】演算装置1は、データを参照する際、参照
するデータの本来の保存位置を含むデータの参照要求を
出力する。
When referring to the data, the arithmetic unit 1 outputs a data reference request including the original storage position of the data to be referenced.

【0026】演算装置1からデータの参照要求が出力さ
れると、一時記憶装置2内の管理手段21は、図3の流
れ図に示すように、参照要求されたデータ(参照デー
タ)が一時記憶領域23中に存在するか否かを判断する
(S31)。
When a data reference request is output from the arithmetic unit 1, the management means 21 in the temporary storage device 2 stores the requested data (reference data) in the temporary storage area as shown in the flowchart of FIG. 23 is determined (S31).

【0027】そして、存在すると判断した場合は、管理
表22に保存されている管理情報の内の、参照データと
対応する管理情報に対して、最新の参照時刻TRを現在
時刻に更新し、参照回数nを1だけ増加させるという更
新処理を行う(S36)。これに対して、存在しないと
判断した場合は、一時記憶領域23中に、参照データを
保存するのに十分な空きがあるか否かを判断する(S3
2)。
If it is determined that the reference information exists, the latest reference time TR is updated to the current time with respect to the management information corresponding to the reference data in the management information stored in the management table 22. An update process of increasing the number n by 1 is performed (S36). On the other hand, when it is determined that the reference data does not exist, it is determined whether or not there is enough free space in the temporary storage area 23 to store the reference data (S3).
2).

【0028】S32において、空きがあると判断した場
合は、そこに参照データを保存する(S34)。これに
対して、空きがないと判断した場合は、一時記憶領域2
3に空きを作り(S33)、そこに参照データを保存す
る(S34)。
If it is determined in S32 that there is a free space, the reference data is stored there (S34). On the other hand, if it is determined that there is no free space, the temporary storage area 2
3 (S33), and stores the reference data therein (S34).

【0029】図4は、S33の詳細な処理例を示す流れ
図であり、同図を参照して空きの作成方法を説明する。
FIG. 4 is a flowchart showing a detailed processing example of S33, and a method of creating an empty space will be described with reference to FIG.

【0030】先ず、一時記憶領域23に保存されている
各データそれぞれについて、参照間隔の推定値を求める
(S41)。参照間隔の推定値は、例えば次のようにし
て求める。一時記憶領域23に保存されている各データ
の管理情報を管理表22から取得する。その後、各デー
タ毎に、それと対応する管理情報中の最新の参照時刻T
R,保存時刻TF,参照回数nに基づいて次式(1)に
示す演算を行うことにより、各データの参照間隔の推定
値を求める。
First, an estimated value of the reference interval is obtained for each data stored in the temporary storage area 23 (S41). The estimated value of the reference interval is obtained, for example, as follows. The management information of each data stored in the temporary storage area 23 is acquired from the management table 22. Thereafter, for each data, the latest reference time T in the management information corresponding to each data is set.
The estimated value of the reference interval of each data is obtained by performing the calculation represented by the following equation (1) based on R, the storage time TF, and the number of references n.

【0031】 参照間隔の推定値=(TR−TF)/(n−1) …… (1)Estimated value of reference interval = (TR−TF) / (n−1) (1)

【0032】S41において各データの参照間隔の推定
値を求めると、一時記憶領域23に保存されているデー
タの中から、参照間隔の推定値が最も大きなものを1つ
選択する(S42)。
When the estimated value of the reference interval of each data is obtained in S41, one data having the largest estimated value of the reference interval is selected from the data stored in the temporary storage area 23 (S42).

【0033】その後、S42で選択したデータを本来の
記憶位置に戻すか、若しくは捨てるかして、その部分に
空きを作る(S43)。以上の処理により、一時記憶領
域23に、参照データを保存するための空きが作成され
る。
Thereafter, the data selected in S42 is returned to the original storage position or discarded, thereby making a space in that portion (S43). Through the above processing, a space for storing the reference data is created in the temporary storage area 23.

【0034】管理手段21は、一時記憶領域23に参照
データを保存すると(図3,S34)、上記参照データ
の管理情報が管理表22中に存在するか否かを判断する
(S35)。
When storing the reference data in the temporary storage area 23 (S34 in FIG. 3), the management means 21 determines whether or not the management information of the reference data exists in the management table 22 (S35).

【0035】そして、存在すると判断した場合は、上記
参照データの管理情報に対して、参照時刻TRを現在時
刻に更新し、参照回数nを1だけ増加させるという更新
処理を行う(S36)。これに対して、存在しないと判
断した場合は、管理表22中に、管理情報を保存するの
に十分な空きがあるか否かを判断する(S37)。
If it is determined that the reference data exists, the reference time TR is updated to the current time with respect to the management information of the reference data, and an update process of increasing the number of references n by 1 is performed (S36). On the other hand, if it is determined that the management information does not exist, it is determined whether or not there is enough space in the management table 22 to store the management information (S37).

【0036】S37において、管理表22に空きがある
と判断した場合は、そこに上記参照データの管理情報を
新規に保存する(S39)。この場合、管理情報の各管
理項目の内容、即ち、識別子ID,最新の参照時刻T
R,保存時刻TF,参照回数nの内容は、それぞれ「参
照データの識別子」,「現在時刻」,「現在時刻」,
「1」となる。
If it is determined in S37 that there is a free space in the management table 22, the management information of the reference data is newly stored there (S39). In this case, the content of each management item of the management information, that is, the identifier ID, the latest reference time T
The contents of R, storage time TF, and reference count n are “identifier of reference data”, “current time”, “current time”,
It becomes "1".

【0037】これに対して、S37において、管理表2
2に空きがないと判断した場合は、管理表22に空きを
作った後(S38)、そこに参照データの管理情報を保
存する(S39)。管理表22に空きを作る方法として
は、例えば、一時記憶領域23に対応するデータが格納
されていない管理情報の中から、ランダムに、若しくは
参照間隔の推定値が最も大きいものを1つ選択し、選択
した管理情報を捨てるという方法を採ることができる。
On the other hand, in S37, the management table 2
If it is determined that there is no empty space in the management table 22, a space is created in the management table 22 (S38), and the management information of the reference data is stored there (S39). As a method of creating an empty space in the management table 22, for example, one of the management information in which data corresponding to the temporary storage area 23 is not stored is selected randomly or with the largest estimated value of the reference interval. Alternatively, a method of discarding the selected management information can be adopted.

【0038】尚、上述した説明においては、前出の式
(1)により求まる値を参照間隔の推定値としたが、例
えば、次式(2)により求まる値を参照間隔の推定値と
しても良い。尚、式(2)を使用する場合は、管理表2
2では、最新の参照時刻TRを管理する必要はなく、識
別子ID,保存時刻TFおよび参照回数nを管理すれば
良い。
In the above description , the value obtained by the above equation (1) is used as the estimated value of the reference interval. However, for example, the value obtained by the following equation (2) may be used as the estimated value of the reference interval. . When using the equation (2), the management table 2
In 2, it is not necessary to manage the latest reference time TR, and it is sufficient to manage the identifier ID, the storage time TF, and the number of times of reference n.

【0039】 参照間隔の推定値=(現在時刻−TF)/n …… (2)Estimated value of reference interval = (current time−TF) / n (2)

【0040】更に、次式(3)により求まる値を参照間
隔の推定値とすることもできる。尚、式(3)におい
て、a,b,c,dは、正の値である。
Further, a value obtained by the following equation (3) can be used as an estimated value of the reference interval. In addition, in Formula (3), a, b, c, and d are positive values.

【0041】 参照間隔の推定値={a×(現在時刻−TR) +b×(1/n) +c×(現在時刻−TF)/n +d×(TR−TF)/(n−1)} ÷(a+b+c+d) …… (3)Estimated value of reference interval = {a × (current time−TR) + b × (1 / n) + c × (current time−TF) / n + d × (TR−TF) / (n−1)} (A + b + c + d) (3)

【0042】また、上述した前提技術の構成を下記のよ
うに変形することもできる。時刻として一般に用いられ
ている時刻とは別に、データ参照の度に値を増加させら
れるようなカウンタの値を用いても構わない。また、参
照データは、記憶装置3に蓄えられたり、他の情報処理
装置4が生成するデータだけではなく、情報処理装置5
が一時的に生成したデータであっても構わない。また、
情報処理装置5が記憶装置3を含む構成になっても構わ
ない。更に、記憶装置3や他の情報処理装置4が複数個
あっても構わない。
Further, the configuration of the above-described base technology can be modified as follows. Apart from the time generally used as the time, a counter value that can increase the value each time data is referenced may be used. The reference data is not only data stored in the storage device 3 or data generated by another information processing device 4, but also information processing device 5.
May be temporarily generated data. Also,
The information processing device 5 may be configured to include the storage device 3. Further, a plurality of storage devices 3 and other information processing devices 4 may be provided.

【0043】また、上述した説明においては、一時記憶
領域23に保存する参照データのサイズを全て同じもの
としたが、参照データのサイズが異なっている場合は、
図3のS33で行う処理を次のようにすれば良い。すな
わち、一時記憶領域23に保存されているデータに対し
て、参照間隔の推定値が最も大きいものから順番に選択
するという処理を、選択したデータのサイズの累積値が
一時記憶領域23に保存しようとしている参照データの
サイズ以上となるまで行い、その後、選択したデータが
保存されている部分を空きにするようにすれば良い。
Further, in the above description , the sizes of the reference data stored in the temporary storage area 23 are all the same, but when the sizes of the reference data are different,
The processing performed in S33 of FIG. 3 may be performed as follows. That is, the process of selecting the data stored in the temporary storage area 23 in order from the one with the largest estimated value of the reference interval will be performed by storing the accumulated value of the size of the selected data in the temporary storage area 23. This is performed until the size of the reference data becomes equal to or larger than the size of the reference data, and then the portion where the selected data is stored may be made empty.

【0044】次に本発明の実施例について説明する。図
5は本発明の実施例のブロック図であり、演算装置1お
よび一時記憶装置2aを含む情報処理装置5aと、記憶
装置3と、情報処理装置4と、記録媒体6aとから構成
されている。
[0044] will now be described real施例of the present invention. Figure 5 is a block diagram of a real施例of the present invention, an information processing apparatus 5a that includes an arithmetic unit 1 and the temporary storage device 2a, a storage device 3, the information processing apparatus 4, is composed of a recording medium 6a I have.

【0045】一時記憶装置2aは、管理手段21aと、
管理表22aと、一時記憶領域23と、参照コスト記憶
部24とから構成されている。
The temporary storage device 2a includes management means 21a,
It is composed of a management table 22a, a temporary storage area 23, and a reference cost storage unit 24.

【0046】参照コスト記憶部24には、演算装置1が
アクセス可能な全ての記憶領域の参照コスト(アクセス
時間)が記録されている。
The reference cost storage unit 24 records the reference costs (access times) of all storage areas accessible by the arithmetic unit 1.

【0047】管理表22aには、データの管理情報とし
て、図6に示すように、データを区別するための識別子
IDと、そのデータの最新の参照時刻TRと、そのデー
タを一時記憶領域23に最初に保存したときの時刻(保
存時刻)TFと、保存時刻TFから現時点までのデータ
の参照回数nと、参照コストGとが保存されている。図
6の例は、識別子IDが「A100」のデータの最新の
参照時刻TR,保存時刻TF,参照回数n,コストGが
それぞれ「t1」,「t2」,「10」,「g1」で、
識別子IDが「A50」のデータの最新の参照時刻T
R,保存時刻TF,参照回数n,参照コストGがそれぞ
れ「t3」,「t4」,「5」,「g2」であることを
示している。
As shown in FIG. 6, the management table 22a stores, as data management information, an identifier ID for distinguishing data, the latest reference time TR of the data, and the data in the temporary storage area 23. The time (storage time) TF at the time of first storage, the number of data references n from the storage time TF to the current time, and the reference cost G are stored. In the example of FIG. 6, the latest reference time TR, storage time TF, reference count n, and cost G of the data having the identifier ID “A100” are “t1,” “t2,” “10,” and “g1,” respectively.
Latest reference time T of data with identifier ID “A50”
R, the storage time TF, the reference count n, and the reference cost G are “t3”, “t4”, “5”, and “g2”, respectively.

【0048】管理手段21aは、一時記憶領域23に空
きを作る際、参照コストで正規化した参照間隔の推定値
を用いて一時記憶領域23から追い出すデータを選択す
る機能や、選択したデータを一時記憶領域23から追い
出すことにより一時記憶領域23に空きを作る機能等を
有する。
The management unit 21a has a function of selecting data to be evicted from the temporary storage area 23 by using an estimated value of the reference interval normalized by the reference cost when creating a free space in the temporary storage area 23, and temporarily storing the selected data. It has a function of creating an empty space in the temporary storage area 23 by eviction from the storage area 23.

【0049】情報処理装置5aに接続されている記録媒
体6aは、ディスク,半導体メモリ,その他の記録媒体
であり、コンピュータによって構成される情報処理装置
5aを一時記憶領域の管理装置として機能させるための
プログラムが記録されている。このプログラムは、情報
処理装置5aによって読み取られ、情報処理装置5aの
動作を制御することにより、情報処理装置5a上に管理
手段21aを実現する。
The recording medium 6a connected to the information processing apparatus 5a is a disk, a semiconductor memory, or another recording medium, and is used for causing the information processing apparatus 5a formed by a computer to function as a temporary storage area management device. The program has been recorded. This program is read by the information processing device 5a, and controls the operation of the information processing device 5a, thereby realizing the management unit 21a on the information processing device 5a.

【0050】次に本実施例の動作を説明する。本実施例
の動作は、図3に示した流れ図のS33において、図4
の流れ図に示した処理の代わりに図7の流れ図に示した
処理を行う点と、図3のS39の代わりに図8に示した
S39aの処理を行う点を除き、図1に示した前提技術
と同じであるので、S33で行う処理およびS39aで
行う処理についてのみ説明する。
Next, the operation of this embodiment will be described. The operation of the present embodiment is performed in S33 of the flowchart shown in FIG.
And that performs the processing shown in the flowchart of FIG. 7 in place of the processing shown in the flowchart of, except for processing S39a of FIG. 8 in place of S39 in FIG. 3, the base technology shown in FIG. 1 Since the processing is the same as that described above, only the processing performed in S33 and the processing performed in S39a will be described.

【0051】S33において、一時記憶領域23に空き
を作る場合、管理手段21aは、図7の流れ図に示す手
順で一時記憶領域23上に空きを作る。
In S33, when creating a free space in the temporary storage area 23, the management means 21a creates a free space in the temporary storage area 23 according to the procedure shown in the flowchart of FIG.

【0052】先ず、管理手段21aは、一時記憶領域2
3に保存されている各データそれぞれについて、前出の
式(1),式(2)或いは式(3)を用いて参照間隔の
推定値を求める(S71)。尚、現在時刻−TRの値や
1/nの値を参照間隔の推定値としても構わない。
First, the management unit 21a stores the temporary storage area 2
For each of the data stored in No.3, an estimated value of the reference interval is calculated using the above-described formula (1), formula (2) or formula (3) (S71). Note that the value of the current time −TR or the value of 1 / n may be used as the estimated value of the reference interval.

【0053】その後、S71で求めた各データの参照間
隔の推定値それぞれに対して、次式(4)に示す演算を
行うことにより、参照コストで正規化した参照間隔の推
定値を求める(S72)。
Thereafter, the estimated value of the reference interval of each data obtained in S71 is calculated by the following equation (4) to obtain the estimated value of the reference interval normalized by the reference cost (S72). ).

【0054】 正規化した参照間隔の推定値=(参照間隔の推定値)÷(参照コスト) …… (4)Normalized reference interval estimated value = (reference interval estimated value) ÷ (reference cost) (4)

【0055】例えば、識別子A100のデータの正規化
された参照間隔の推定値は、(参照間隔の推定値)÷g
1となり、識別子A50のデータの正規化された参照間
隔の推定値は、(参照間隔の推定値)÷g2となる(図
6参照)。
For example, the estimated value of the normalized reference interval of the data of the identifier A100 is (estimated value of the reference interval) ÷ g
The estimated value of the normalized reference interval of the data of the identifier A50 is (estimated value of the reference interval) ÷ g2 (see FIG. 6).

【0056】S72において、各データについて正規化
された参照間隔の推定値を求めると、一時記憶領域23
に保存されているデータの中から、正規化された参照間
隔の推定値が最も大きなデータを1つ選択する(S7
3)。
In S72, when the estimated value of the reference interval normalized for each data is obtained, the temporary storage area 23
Is selected from among the data stored in the storage area (S7).
3).

【0057】その後、S73で選択したデータを本来の
保存位置に戻すか、若しくは捨てるかして、一時記憶領
域23上に、参照データを保存するための空きを作る
(S74)。以上がS33で行う処理である。このよう
に、正規化された参照間隔の推定値の大きなデータが保
存されている部分に空きを作るようにすることにより、
参照履歴が同じデータであれば、参照コストが大きなデ
ータほど一時記憶領域23に長期間残すことができるの
で、参照コストが異なる記憶領域を有するシステムにお
いて、一時記憶領域23を有効利用することが可能にな
る。
Thereafter, the data selected in S73 is returned to the original storage position or discarded, thereby creating a space in the temporary storage area 23 for storing the reference data (S74). The above is the processing performed in S33. In this way, by making a space in a portion where data with a large estimated value of the normalized reference interval is stored,
If the reference histories are the same, data with a higher reference cost can be left in the temporary storage area 23 for a long period of time, so that in a system having storage areas with different reference costs, the temporary storage area 23 can be effectively used. become.

【0058】次に、S39の代わりに行う図8に示した
S39aの処理について説明する。S39aでは、図3
のS34において一時記憶領域23に保存した参照デー
タの管理情報として、各管理項目に下記の内容を設定し
たものを管理表22aの空きに保存する。即ち、識別子
ID,最新の参照時刻TR,保存時刻TF,参照回数
n,参照コストGのそれぞれに、「参照データの識別
子」,「現在時刻」,「現在時刻」,「1」,「参照デ
ータの参照コスト」を設定し、管理表22aに格納す
る。尚、参照データの参照コストは、参照コスト記憶部
24から取得するものである。
Next, the processing of S39a shown in FIG. 8 performed in place of S39 will be described. In S39a, FIG.
In S34, as the management information of the reference data stored in the temporary storage area 23, the management information having the following contents set in the respective management items is stored in an empty space of the management table 22a. That is, “identifier of reference data”, “current time”, “current time”, “1”, and “reference data” are assigned to identifier ID, latest reference time TR, storage time TF, reference count n, and reference cost G, respectively. Is set and stored in the management table 22a. The reference cost of the reference data is obtained from the reference cost storage unit 24.

【0059】尚、本実施例においても、図1の前提技術
の説明で述べたような変形が可能であることは言うまで
もない。更に、参照コストは、上記したような予め分か
っている値(静的に決まっている値)でなくとも、デー
タを実際に参照したときに初めて分かる値(動的に決ま
る値)や、推定値であっても構わない。参照コストが動
的に決まる場合は、参照コスト記憶部24は不要であ
る。
It is needless to say that the modification described in the description of the base technology in FIG. 1 is also possible in this embodiment. Furthermore, the reference cost is not a known value (a statically determined value) as described above, but a value (a dynamically determined value) that is known only when data is actually referenced, and an estimated value. It does not matter. When the reference cost is dynamically determined, the reference cost storage unit 24 is unnecessary.

【0060】[0060]

【発明の効果】以上説明したように、一時記憶領域に空
きを作ることが必要になった場合、参照コストにより正
規化した参照間隔の推定値を用いて一時記憶領域から追
い出すデータを決定するようにしているので、参照コス
トが異なる記憶領域を有するシステムにおいて、LRU
法,LFU法の欠点を解決し、一時記憶領域を有効利用
することが可能になる。その結果、情報処理装置を用い
て行う様々な作業の処理時間を短縮することが可能とな
る。
As described above, when it becomes necessary to make a space in the temporary storage area, the cost is reduced by the reference cost.
Since the data to be evicted from the temporary storage area is determined using the normalized reference interval estimation value, the reference cost
LRU in a system with different storage areas
Method and the LFU method can be solved, and the temporary storage area can be effectively used. As a result, it is possible to reduce the processing time of various operations performed using the information processing device.

【0061】また、参照コストによって正規化した参照
間隔の推定値を求めるために管理しておくことが必要に
なる情報は、データの保存時刻,データの参照回数,参
照コストだけであるので、LRU−K法に比較して経済
的なハードウェア構成,簡単な処理で、一時記憶領域を
有効利用することが可能になる。また、LRU−K法で
は、参照回数がk回に達していないデータを取り扱うこ
とができないが、本発明では、そのような制限は無くな
る。
Information required to be managed in order to obtain an estimated value of the reference interval normalized by the reference cost includes a data storage time, a data reference count , and a reference count .
Since only the illumination cost is required, the temporary storage area can be effectively used with an economical hardware configuration and simple processing compared to the LRU-K method. Further, the LRU-K method cannot handle data whose reference count does not reach k, but the present invention eliminates such a limitation.

【0062】[0062]

【図面の簡単な説明】[Brief description of the drawings]

【図1】本発明の前提技術のブロック図である。FIG. 1 is a block diagram of a base technology of the present invention.

【図2】管理表22の内容例を示す図である。FIG. 2 is a diagram showing an example of the contents of a management table 22.

【図3】管理手段21の処理例を示す流れ図である。FIG. 3 is a flowchart illustrating a processing example of a management unit 21;

【図4】一時記憶領域23に空きを作る際の管理手段2
1の処理例を示す流れ図である。
FIG. 4 is a diagram showing a management unit 2 for creating an empty space in the temporary storage area 23.
6 is a flowchart illustrating a processing example of No. 1;

【図5】本発明の実施例のブロック図である。5 is a block diagram of a real施例of the present invention.

【図6】管理表22aの内容例を示す図である。FIG. 6 is a diagram showing an example of the contents of a management table 22a.

【図7】一時記憶領域23に空きを作る際の管理手段2
1aの処理例を示す流れ図である。
FIG. 7 shows management means 2 for creating a free space in temporary storage area 23.
It is a flowchart which shows the example of a process of 1a.

【図8】管理表22aに新規に管理情報を保存する際の
管理手段21aの処理例を示す流れ図である。
FIG. 8 is a flowchart showing a processing example of a management unit 21a when newly saving management information in a management table 22a.

【符号の説明】[Explanation of symbols]

1…演算装置 2,2a…一時記憶装置 21,21a…管理手段 22,22a…管理表 23…一時記憶領域 24…参照コスト記憶部 3…記憶装置 4…情報処理装置 5,5a…情報処理装置 6,6a…記録媒体 DESCRIPTION OF SYMBOLS 1 ... Operation device 2, 2a ... Temporary storage device 21, 21a ... Management means 22, 22a ... Management table 23 ... Temporary storage area 24 ... Reference cost storage part 3 ... Storage device 4 ... Information processing device 5, 5a ... Information processing device 6, 6a ... recording medium

Claims (3)

(57)【特許請求の範囲】(57) [Claims] 【請求項1】 データが一時的に保存される一時記憶領
域の管理方法において、 前記一時記憶領域に保存された各データそれぞれについ
て、前記一時記憶領域に最初に保存されたときの保存時
刻と、参照回数と、本来の記憶領域に対するアクセス時
間を示す参照コストを管理し、 前記一時記憶領域に空きを作ることが必要になった場
合、前記一時記憶領域に保存されているデータの中か
ら、前記管理している保存時刻と参照回数とを考慮する
ことにより決まる参照間隔の推定値を参照コストで正規
化したときの値が大きいデータを選択し、該選択したデ
ータが保存されている部分を空きにすることを特徴とす
る一時記憶領域の管理方法。
1. A method of managing a temporary storage area in which data is temporarily stored, wherein, for each data stored in the temporary storage area, a storage time when the data is first stored in the temporary storage area; Reference count and when accessing the original storage area
Manages the reference cost indicating the interval, and when it is necessary to make room in the temporary storage area, from among the data stored in the temporary storage area, the managed storage time and reference count The estimated value of the reference interval determined by considering the
A method for managing a temporary storage area, characterized by selecting data having a large value at the time of conversion , and vacating a portion where the selected data is stored.
【請求項2】 データが一時的に保存される一時記憶領
域を管理する一時記憶領域の管理装置において、 前記一時記憶領域に保存された各データそれぞれについ
て、前記一時記憶領域に最初に保存されたときの保存時
刻と、参照回数と、本来の記憶領域に対するアクセス時
間を示す参照コストとを管理する管理表と、 前記一時記憶領域に空きを作ることが必要になった場
合、前記一時記憶領域に保存されているデータの中か
ら、前記管理表で管理している保存時刻と参照回数とを
考慮することにより決まる参照間隔の推定値を参照コス
トで正規化したときの値が大きいデータを選択し、該選
択したデータが保存されている部分を空きにする管理手
段とを備えたことを特徴とする一時記憶領域の管理装
置。
2. A temporary storage area management device for managing a temporary storage area in which data is temporarily stored, wherein each data stored in the temporary storage area is first stored in the temporary storage area. Time of storage, reference count, and access to the original storage area
A management table for managing the reference cost indicating the interval, and when it is necessary to make room in the temporary storage area, from the data stored in the temporary storage area, The estimated value of the reference interval, which is determined by considering the
And a management unit for selecting data having a large value when normalized by the data, and vacating a portion where the selected data is stored.
【請求項3】 データが一時的に保存される一時記憶領
域をコンピュータによって管理するためのプログラムを
記録した機械読み取り可能な記録媒体であって、 前記コンピュータに、 前記一時記憶領域に保存された各データそれぞれについ
て、前記一時記憶領域に最初に保存されたときの保存時
刻と、参照回数と、本来の記憶領域に対するアクセス時
間を示す参照コストとを管理させる処理、 前記一時記憶領域に空きを作ることが必要になった場
合、前記一時記憶領域に保存されているデータの中か
ら、前記管理している保存時刻と参照回数とを考慮する
ことにより決まる参照間隔の推定値を参照コストで正規
化したときの値が大きいデータを選択し、該選択したデ
ータが保存されている部分を空きにする処理、 を実行させるためのプログラムを記録した、プログラム
を記録した機械読み取り可能な記録媒体。
3. A machine-readable recording medium on which a program for managing a temporary storage area in which data is temporarily stored by a computer is recorded, wherein the computer stores each of the programs stored in the temporary storage area. For each of the data, the storage time when the data was first stored in the temporary storage area, the number of references, and the time when the original storage area was accessed.
A process of managing a reference cost indicating a time interval, when it is necessary to make a space in the temporary storage area, from the data stored in the temporary storage area, the managed storage time and reference The estimated value of the reference interval determined by considering the number of times is normalized by the reference cost
A process for selecting data having a large value when the data is converted , and making a portion where the selected data is stored empty, and a program for recording the program for executing the process.
JP03385498A 1998-01-30 1998-01-30 Temporary storage area management method and device, and machine-readable recording medium recording program Expired - Fee Related JP3287300B2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP03385498A JP3287300B2 (en) 1998-01-30 1998-01-30 Temporary storage area management method and device, and machine-readable recording medium recording program

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP03385498A JP3287300B2 (en) 1998-01-30 1998-01-30 Temporary storage area management method and device, and machine-readable recording medium recording program

Publications (2)

Publication Number Publication Date
JPH11219315A JPH11219315A (en) 1999-08-10
JP3287300B2 true JP3287300B2 (en) 2002-06-04

Family

ID=12398105

Family Applications (1)

Application Number Title Priority Date Filing Date
JP03385498A Expired - Fee Related JP3287300B2 (en) 1998-01-30 1998-01-30 Temporary storage area management method and device, and machine-readable recording medium recording program

Country Status (1)

Country Link
JP (1) JP3287300B2 (en)

Also Published As

Publication number Publication date
JPH11219315A (en) 1999-08-10

Similar Documents

Publication Publication Date Title
US5390318A (en) Managing the fetching and replacement of cache entries associated with a file system
US5895488A (en) Cache flushing methods and apparatus
JP4028820B2 (en) Method and apparatus for selective caching of transactions in a computer system
US6385699B1 (en) Managing an object store based on object replacement penalties and reference probabilities
US8041897B2 (en) Cache management within a data processing apparatus
US7827364B2 (en) Multistage virtual memory paging system
KR100810781B1 (en) Data processor with cache
EP0780769A1 (en) Hybrid numa coma caching system and methods for selecting between the caching modes
US20080263326A1 (en) Method and apparatus for an efficient multi-path trace cache design
JP3864256B2 (en) Method and profiling cache for managing virtual memory
US20020156980A1 (en) Designing a cache with adaptive reconfiguration
US5761501A (en) Stacked skip list data structures
JPH02281350A (en) Cache memory management
JPH0574102B2 (en)
JP2001507845A (en) Prefetch management in cache memory
JPH08147218A (en) Cache controller
JP2017162194A (en) Data management program, data management device, and data management method
JP4095152B2 (en) Image management apparatus and method, image management system, and storage medium
JP3287300B2 (en) Temporary storage area management method and device, and machine-readable recording medium recording program
JP4741844B2 (en) Memory that can selectively change the line width
US8214601B2 (en) Purging without write-back of cache lines containing spent data
JP4742432B2 (en) Memory system
JPS60214060A (en) Control system of external storage cache
JPH05189286A (en) System and method for controlling disk cache
JP3166827B2 (en) External storage device and cache memory control method

Legal Events

Date Code Title Description
FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20080315

Year of fee payment: 6

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20090315

Year of fee payment: 7

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20090315

Year of fee payment: 7

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20100315

Year of fee payment: 8

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20100315

Year of fee payment: 8

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20110315

Year of fee payment: 9

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20110315

Year of fee payment: 9

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20120315

Year of fee payment: 10

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20120315

Year of fee payment: 10

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20130315

Year of fee payment: 11

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20130315

Year of fee payment: 11

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20140315

Year of fee payment: 12

LAPS Cancellation because of no payment of annual fees