KR100248083B1 - Method for managing variable-length messages in circular queue - Google Patents

Method for managing variable-length messages in circular queue Download PDF

Info

Publication number
KR100248083B1
KR100248083B1 KR1019970052949A KR19970052949A KR100248083B1 KR 100248083 B1 KR100248083 B1 KR 100248083B1 KR 1019970052949 A KR1019970052949 A KR 1019970052949A KR 19970052949 A KR19970052949 A KR 19970052949A KR 100248083 B1 KR100248083 B1 KR 100248083B1
Authority
KR
South Korea
Prior art keywords
message
queue
length
value
size
Prior art date
Application number
KR1019970052949A
Other languages
Korean (ko)
Other versions
KR19990032031A (en
Inventor
송춘환
박순
채상호
이원택
Original Assignee
서정욱
에스케이텔레콤주식회사
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 서정욱, 에스케이텔레콤주식회사 filed Critical 서정욱
Priority to KR1019970052949A priority Critical patent/KR100248083B1/en
Publication of KR19990032031A publication Critical patent/KR19990032031A/en
Application granted granted Critical
Publication of KR100248083B1 publication Critical patent/KR100248083B1/en

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F12/00Accessing, addressing or allocating within memory systems or architectures
    • G06F12/02Addressing or allocation; Relocation
    • G06F12/04Addressing variable-length words or parts of words

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Data Exchanges In Wide-Area Networks (AREA)

Abstract

1. 청구 범위에 기재된 발명이 속한 기술분야1. TECHNICAL FIELD OF THE INVENTION

순환큐에서의 가변길이 메세지 처리방법.Variable length message handling in circular queue.

2. 발명이 해결하려고 하는 기술적 과제2. The technical problem to be solved by the invention

한정된 크기의 메모리에서 가변 길이의 메세지를 효과적으로 저장하고, 읽어내어 메모리 사용 효율을 극대화 하고자 함.It is designed to maximize the efficiency of memory usage by effectively storing and reading variable length messages in a limited size memory.

3. 발명의 해결방법의 요지3. Summary of Solution to Invention

논리적인 큐크기 다음 부분에 최대 메세지 크기 만큼의 메모리 영역을 더 할당한 큐에서 입력된 메세지의 길이정보를 획득하고, 입력된 메세지에 순번을 지정한 다음, 테일값에 기록된 메모리 주소에 상기 입력된 메세지를 차례로 저장하고, 메세지 길이정보를 이용해 새로운 테일값을 계산하여 이전 테일값을 새로 계산된 테일값으로 갱신하고, 다음 입력될 메세지의 순번을 하나 증가시킨다. 헤드값의 메모리 주소에 해당하는 메세지의 길이 정보를 읽어 상기 메모리 주소에 저장된 메세지를 상기 메세지 길이만큼 연속적으로 읽어낸 다음, 읽어낸 메세지의 메세지 길이정보를 이용해 새로운 헤드값을 계산하여 이전 헤드값을 갱신한다.The length information of the input message is obtained from the queue in which the memory area with the maximum message size is allocated after the logical queue size, the sequence number is assigned to the input message, and the inputted memory address is written to the memory address recorded in the tail value. The messages are stored in order, the new tail value is calculated using the message length information, the previous tail value is updated with the newly calculated tail value, and the sequence number of the next input message is increased by one. Read the message length information corresponding to the memory address of the head value, read the message stored in the memory address continuously as the message length, and calculate the new head value using the message length information of the read message. Update

4. 발명의 중요한 용도4. Important uses of the invention

가변길이 메세지를 저장하는 큐의 제어에 이용됨.Used to control queues storing variable length messages.

Description

순환큐에서의 가변길이 메세지 처리방법Variable length message handling in circular queue

본 발명은 순환큐에서의 가변길이 메세지 처리방법에 관한 것으로, 특히 한정된 크기의 메모리에서 가변 길이의 메세지를 효과적으로 저장하고, 삭제하여 메모리 사용 효율을 극대화 할 수 있는 순환큐에서의 가변길이 메세지 처리방법에 관한 것이다.The present invention relates to a variable length message processing method in a circular queue, and more particularly, to a variable length message processing method in a circular queue capable of maximizing memory efficiency by effectively storing and deleting a variable length message in a limited size memory. It is about.

종래의 일반적인 순환큐는 고정된 길이의 메세지를 격납하는 추상적인 메모리 구조이다. 현재에는 메세지 길이가 가변적인 경우가 대부분인데, 이를 처리하기 위해서는 종래의 고정길이의 메세지를 처리하는 제어방법으로는 적합하지 않다. 종래의 방법을 이용하려면 최대 메세지 길이를 정의하고, 이를 고정길이의 메세지로 가정하는 방법이 있으나, 이는 각 메세지마다 사용되지 않는 부분이 존재하므로 메모리의 효율이 떨어지는 문제점이 있다.Conventional general circular queues are abstract memory structures that store messages of fixed length. Currently, the message length is mostly variable, but in order to handle this, it is not suitable as a control method for processing a conventional fixed length message. In order to use the conventional method, there is a method of defining a maximum message length and assuming that it is a fixed length message. However, since there is a portion that is not used for each message, there is a problem that the efficiency of memory is lowered.

따라서, 상기와 같은 종래 기술의 문제점을 해결하기 위하여 안출된 본 발명은 한정된 크기의 메모리에서 가변 길이의 메세지를 효과적으로 저장하고, 삭제하여 메모리 사용 효율을 극대화 할 수 있는 순환큐에서의 가변길이 메세지 처리방법을 제공하는데 그 목적이 있다.Accordingly, the present invention devised to solve the above problems of the prior art variable length message processing in a circular queue that can effectively store and delete a variable length message in a limited size memory to maximize memory usage efficiency The purpose is to provide a method.

도 1 은 본 발명을 개략적으로 설명하기 위한 도면.1 is a view for schematically explaining the present invention.

도 2a 및 2b 는 본 발명에 따른 순환큐에서의 가변길이 메세지 처리 방법의 흐름도.2A and 2B are flowcharts of a variable length message processing method in a circular queue according to the present invention;

도 3 은 한 개의 메세지를 삽입하는 과정을 설명하기 위한 도면.3 is a view for explaining a process of inserting one message;

도 4 는 한 개의 메세지를 삭제하는 과정을 설명하기 위한 도면.4 is a view for explaining a process of deleting one message.

상기 목적을 달성하기 위한 본 발명은, 논리적인 큐크기 다음 부분에 최대 메세지 크기 만큼의 메모리 영역이 더 할당된 구조를 갖는 큐에 적용되는 가변길이 메세지 처리방법에 있어서, 입력된 메세지로부터 메세지 길이정보를 획득하고, 입력된 메세지에 메세지 순번을 지정하는 제1단계; 테일값을 읽어 테일값에 기록된 메모리 주소에 상기 입력된 메세지를 차례로 저장하는 제2단계; 메세지 길이정보를 이용해 새로운 테일값을 계산하여 이전 테일값을 새로 계산된 테일값으로 갱신하고, 다음 입력될 메세지의 순번을 하나 증가시키는 제3단계; 헤드값에 저장된 메모리 주소에 해당하는 메세지의 길이 정보를 읽어 상기 메모리 주소에 저장된 메세지를 상기 메세지 길이정보만큼 연속적으로 읽어내는 제4단계; 및 읽어낸 메세지의 메세지 길이정보를 이용해 새로운 헤드값을 계산하여 이전 헤드값을 갱신하는 제5단계를 포함하여 이루어진 것을 특징으로 한다.In order to achieve the above object, the present invention provides a variable length message processing method applied to a queue having a structure in which a memory area equal to the maximum message size is further allocated after a logical queue size. Acquiring a message and assigning a message sequence number to an input message; Reading a tail value and sequentially storing the input message at a memory address recorded in the tail value; Calculating a new tail value using message length information, updating a previous tail value with a newly calculated tail value, and increasing a sequence number of a next input message by one; Reading the message length information corresponding to the memory address stored in the head value, and continuously reading the message stored in the memory address by the message length information; And a fifth step of updating a previous head value by calculating a new head value using the message length information of the read message.

본 발명의 원리를 개략적으로 설명하면 다음과 같다.The principle of the present invention is briefly described as follows.

가변길이의 메세지들은 메세지의 길이 정보를 가지면서 큐에 삽입된다. 순환큐에서 논리적으로는 처음과 끝이 연결된 것으로 인식되지만, 실제 메모리는 처음과 끝이 서로 연결되어 있는 것은 아니다. 그러므로, 논리적으로는 할당할 수 있는 부분이 존재하지만 물리적으로 떨어져 있어서 할당할 수 없는 경우가 발생될 수 있다. 이를 해결하기 위해 논리적인 큐의 크기외에 물리적으로 메세지의 최대 크기만큼을 비워두어야 한다. 비연속적인 부분에 가변길이 메세지의 저장 주소가 할당될 때, 이 비워진 부분에 가변길이 메세지를 쓰고, 논리적으로는 연속적으로 쓴 것처럼 인식하게 된다.Variable-length messages are inserted into the queue with message length information. In the circular queue, logically, the beginning and the end are regarded as connected, but the real memory is not connected with the beginning and the end. Therefore, a case may exist where logically allocable parts exist but are physically separated and cannot be allocated. To solve this problem, in addition to the logical queue size, the physical size of the message should be empty. When a variable-length message's storage address is assigned to a non-contiguous portion, it is written as if it were written in a logical, contiguous manner.

이하, 첨부된 도면을 참조하여 본 발명의 실시예를 상세히 설명한다.Hereinafter, with reference to the accompanying drawings will be described an embodiment of the present invention;

도 1 은 본 발명의 설명을 위해 가변길이의 메세지를 저장하기 위한 물리적인 메모리 구조와 논리적인 구조를 나타낸 것이다.1 illustrates a physical memory structure and a logical structure for storing a variable length message for explaining the present invention.

하나의 가변길이 메세지 포맷은 데이타, 메세지 길이 정보, 그외 기타 정보들로 이루어진다. 가변길이 메세지가 큐에 저장되어 있을 때, 메세지들간의 명확한 구분을 위해서는 공통적으로 처음부분에 가변길이 메세지의 길이 정보가 지정되어야 한다. 또한, 큐에 저장된 메세지의 개수를 알기 위해 메세지의 순번정보가 포함되어야 한다. 현재 큐에 저장된 메세지의 개수는 다음 단계에서 저장될 메세지에게 부여될 순번에서 헤드에 저장되어 있는 메세지의 순번을 빼서 구해진다.One variable-length message format consists of data, message length information, and other information. When a variable length message is stored in a queue, the length information of the variable length message must be specified at the beginning to clearly distinguish between the messages. In addition, the sequence number of the message should be included in order to know the number of messages stored in the queue. The number of messages currently stored in the queue is obtained by subtracting the number of messages stored in the head from the order to be given to the messages to be stored in the next step.

큐를 제어하기 위한 정보로는 헤드, 테일(Tail), 논리적인 큐 크기(soft limit), 물리적인 큐 크기(hard limit) 등이 있다. 헤드는 큐에 저장되어 있는 메세지들 중 가장 오래 저장된 메세지의 시작부분 주소가 기록되어 있으며, 테일은 다음 단계에서 삽입될 메세지가 저장될 메모리의 시작부분 주소를 가르킨다. 큐에 메세지가 하나도 저장되어 있지 않은 상태에서는 헤드와 테일이 동일한 메모리 주소를 갖는다.Information for controlling the queue includes head, tail, logical soft size, physical hard size, and the like. The head records the beginning address of the oldest stored message in the queue, and the tail points to the beginning address of the memory where the message to be inserted is stored in the next step. In the absence of any messages stored on the queue, the head and tail have the same memory address.

도 2a 는 본 발명에 따른 순환큐에서의 가변길이 메세지 삽입과정의 처리 흐름도이고, 도3은 이를 설명하기 위한 도면이다.FIG. 2A is a flowchart illustrating a variable length message insertion process in a circular queue according to the present invention, and FIG. 3 is a diagram for explaining this.

초기상태에서 헤드와 테일의 주소는 모두 '0'이며, 다음 메세지에 부여될 순번도 '0'이다.In the initial state, the head and tail addresses are both '0' and the sequence number to be assigned to the next message is '0'.

큐에 저장될 메세지가 입력되면 입력된 메세지로부터 길이정보를 획득하고, 메세지 순번을 입력된 메세지에 지정한다(101, 102, 도3의 10).When a message to be stored in the queue is input, length information is obtained from the input message, and the message sequence number is assigned to the input message (101, 102, 10 in Fig. 3).

그리고, 큐에 저장할 메세지의 길이만큼의 공간이 있는지 확인하여(103) 메모리 공간이 부족하면 메시지를 저장할 수 없음을 통보하고(104) 종료한다. 만약, 메모리 공간이 여유 있으면 입력된 메세지를 테일에 기록된 메모리의 주소에 차례로 저장하며(105), 헤드는 그대로 유지시킨다(도3의 12, 13). 그리고, 다음 입력될 메세지를 저장하기 위해 테일 값은 현재 저장된 메세지의 길이만큼 더해진 후, 다시 논리적인 큐 크기로 나머지 연산(modulo soft-limit.)을 통해 구해 이 구한 값으로 테일 값을 갱신한다(106, 도3의 15). 그런 다음, 다음 삽입될 메세지의 순번을 하나 증가시킨다(107, 도3의 11).Then, it checks whether there is space equal to the length of the message to be stored in the queue (103). If the memory space is insufficient, it notifies that the message cannot be stored (104). If the memory space is sufficient, the input message is sequentially stored at the address of the memory recorded in the tail (105), and the head is kept as it is (12, 13 in Fig. 3). To store the next message to be input, the tail value is added by the length of the currently stored message, and then the tail value is obtained through the modulo soft-limit. 106, 15 of FIG. 3). Then, the sequence number of the next message to be inserted is increased by one (107, 11 in Fig. 3).

논리적으로 살펴볼 때, 논리적인 큐의 크기가 가르키는 부분 다음의 메모리 주소는 물리적으로 '0'번지이다. 이 부분은 논리적으로는 연속적으로 보이지만, 물리적으로는 떨어져 있어서 물리적인 메모리를 논리적인 형태로 만드는 것은 불가능하다. 즉, 논리적인 큐 크기와 메모리 주소 '0'번지를 포함하는 메모리 부분이 논리적으로는 할당가능한 것으로 보이지만, 연속적으로 저장되어야할 부분이 물리적으로 떨어져 있으며, 연속적으로 저장되지 못한다. 이를 해결하기 위해 논리적인 큐 크기 다음 부분에 최대 메세지 크기 만큼의 메모리 영역을 더 할당하여 둔다. 논리적으로 살펴볼 때, 논리적인 큐 크기와 메모리 주소 '0'번지를 포함하는 부분에 할당될 메세지는 테일로부터 연속적으로 저장되고, 테일의 계산은 이전의 방법과 동일하게 한다.Logically, the memory address after the portion indicated by the size of the logical queue is physically '0'. This part looks logically contiguous, but physically apart it is impossible to make physical memory logical. That is, the memory part including the logical queue size and the address '0' seems to be logically assignable, but the part to be stored continuously is physically separated and cannot be stored continuously. To solve this problem, allocate more memory space for the maximum message size after the logical queue size. Logically, the message to be allocated to the part including the logical queue size and the memory address '0' is stored continuously from the tail, and the tail calculation is the same as in the previous method.

이 방법의 결과로, 물리적인 부분과 논리적인 부분이 실제로 불일치하지만 논리적으로는 완전한 순환 큐의 형태이다.As a result of this method, the physical and logical parts are actually inconsistent, but are logically in the form of complete circular queues.

도2b 및 도4는 한 메세지의 삭제 과정을 설명하는 흐름도와 도면이다.2B and 4 are a flow chart and a diagram illustrating a deletion process of a message.

순환큐에 저장된 메세지의 삭제는 헤드에 기록된 정보를 이용해 이루어진다. 이는 선입선출(FIFO: First In First Out) 즉, 가장 오래된 메세지가 가장 먼저 큐에서 읽혀져 서비스를 받아야 함을 보장하기 위해서이다.The deletion of the message stored in the circular queue is made using the information recorded in the head. This is to ensure that the first in first out (FIFO), that is, the oldest message is read first from the queue and must be serviced.

먼저, 큐에 저장된 메시지가 있는지를 확인하여(111) 큐에 저장된 메시지가 없으면 이 사실을 통보하고(112) 종료하며, 큐에 저장된 메시지가 있으면 다음 단계를 수행한다.First, it checks whether there is a message stored in the queue (111), notifies the fact that there is no message stored in the queue (112), and if there is a message stored in the queue, the following steps are performed.

큐에서 가장 오래된 메세지의 주소 정보는 헤드에 저장되어 있으므로, 헤드로부터 큐에 저장된 메세지의 길이를 읽어(113) 메세지를 읽어 온다(114). 이후의 새로운 헤드값은 이전의 헤드의 값에 읽어들인 메세지의 길이만큼 더하고, 다시 논리적인 큐의 크기 값으로 나머지 연산을 통해 구해 이 구한 값으로 헤드 값을 변경한다(115, 도4의 17).Since address information of the oldest message in the queue is stored in the head, the length of the message stored in the queue is read from the head (113) and the message is read (114). The subsequent new head value is added to the value of the previous head by the length of the message read, and the logical head size value is obtained through the rest of the operation, and the head value is changed to the calculated value (115, 17 in FIG. 4). .

삽입과정에서 물리적으로 떨어진 메세지를 처리한 방법을 고려할 때, 큐에 저장된 메세지를 읽는 경우, 항상 헤드로부터 물리적으로 연속된 부분을 메세지의 길이만큼 읽어야 한다.Considering how the message is handled physically away from the insert, when reading a queued message, always read the physical contiguous portion of the head the length of the message.

이상에서 설명한 본 발명은 전술한 실시예 및 첨부된 도면에 의해 한정되는 것은 아니고, 본 발명의 기술적 사상을 벗어나지 않는 범위내에서 여러 가지 치환, 변형 및 변경이 가능함은 본 발명이 속하는 기술분야에서 통상의 지식을 가진자에 있어 명백할 것이다.The present invention described above is not limited to the above-described embodiment and the accompanying drawings, and various substitutions, modifications, and alterations are possible within the scope without departing from the technical spirit of the present invention. It will be clear to those who have knowledge of

상기와 같은 본 발명은 후술할 다음의 내용을 통해 그 효과가 명백해질 것이다.The present invention as described above will be apparent through the following description.

종래의 방법과 같이 가변적인 메세지의 최대 크기를 메모리의 최대 크기로 하여 제어하는 경우 낭비되는 메모리의 크기는 (큐에 저장된 메세지의 총 개수) x ((큐원소의 크기)/2)이다. 평균적으로 메세지 하나당 큐원소의 반이 비워지므로 1/2를 큐원소의 크기에 곱해 주었다. 이에 비해 본 발명에서의 낭비된 메모리 크기는 ((최대 큐원소의 크기)/2) x (큐에 저장된 메세지의 총 개수) x (평균 메세지의 크기)/(논리적인 큐의 크기)이다. 단순히 낭비된 메모리의 크기만으로 비교할 때, 본 발명은 종래 방법에 비해 낭비된 메모리의 크기가 작을 뿐만 아니라, 최대 큐원소 크기에 비해 논리적인 큐의 크기가 커질수록 즉, 대규모의 큐일수록 더 좋은 메모리 사용률을 나타냄을 알 수 있다.In the case of controlling the variable maximum size of the message as the maximum size of the memory as in the conventional method, the size of the wasted memory is (total number of messages stored in the queue) x ((size of queue element) / 2). On average, half of the queue elements per message are emptied, so half the size of the queue element is multiplied. In contrast, the wasted memory size in the present invention is ((maximum size of queue element) / 2) x (total number of messages stored in queue) x (average message size) / (logical size of queue). Compared with the size of the wasted memory only, the present invention not only reduces the size of the wasted memory compared to the conventional method, but also the larger the logical queue size, that is, the larger the queue, the better the memory compared to the maximum queue element size. It can be seen that the usage rate.

Claims (4)

논리적인 큐크기 다음 부분에 최대 메세지 크기 만큼의 메모리 영역이 더 할당된 구조를 갖는 큐에 적용되는 가변길이 메세지 처리방법에 있어서,In the variable-length message processing method applied to a queue having a structure in which a memory area corresponding to the maximum message size is further allocated after the logical queue size, 입력된 메세지로부터 메세지 길이정보를 획득하고, 입력된 메세지에 메세지 순번을 지정하는 제1단계;Acquiring message length information from the input message and assigning a message sequence number to the input message; 테일값을 읽어 테일값에 기록된 메모리 주소에 상기 입력된 메세지를 차례로 저장하는 제2단계;Reading a tail value and sequentially storing the input message at a memory address recorded in the tail value; 메세지 길이정보를 이용해 새로운 테일값을 계산하여 이전 테일값을 새로 계산된 테일값으로 갱신하고, 다음 입력될 메세지의 순번을 하나 증가시키는 제3단계;Calculating a new tail value using message length information, updating a previous tail value with a newly calculated tail value, and increasing a sequence number of a next input message by one; 헤드값에 저장된 메모리 주소에 해당하는 메세지의 길이 정보를 읽어 상기 메모리 주소에 저장된 메세지를 상기 메세지 길이정보만큼 연속적으로 읽어내는 제4단계; 및Reading the message length information corresponding to the memory address stored in the head value, and continuously reading the message stored in the memory address by the message length information; And 읽어낸 메세지의 메세지 길이정보를 이용해 새로운 헤드값을 계산하여 이전 헤드값을 갱신하는 제5단계를 포함하여 이루어진 큐에서의 가변길이 메세지 처리방법.And a fifth step of updating a previous head value by calculating a new head value using message length information of the read message. 제 1 항에 있어서,The method of claim 1, 상기 새로운 테일값은,The new tail value is 이전의 테일값에 현재 저장된 메세지의 길이만큼 더한 다음, 논리적인 큐크기로 나머지연산을 하여 구해지는 것을 특징으로 하는 큐에서의 가변길이 메세지 처리방법.A method for processing a variable length message in a queue, wherein the previous tail value is added by the length of the currently stored message, and then calculated by performing a remainder operation on the logical queue size. 제 1 항에 있어서,The method of claim 1, 상기 새로운 헤드값은,The new head value is 이전의 헤드값에 현재 읽어낸 메세지의 길이만큼 더한 다음, 논리적인 큐크기로 나머지연산을 하여 구해지는 것을 특징으로 하는 큐에서의 가변길이 메세지 처리방법.A method for processing a variable length message in a queue, wherein the previous head value is added by the length of the currently read message, and then calculated by performing a remainder operation on the logical queue size. 제 1 항에 있어서,The method of claim 1, 상기 큐로부터 메세지를 읽어내는 경우에 헤드값에 기록된 메모리 주소로부터 시작하여 물리적으로 연속된 부분을 메세지 길이만큼 읽어내는 것을 특징으로 하는 큐에서의 가변길이 메세지 처리방법.The method of processing a variable-length message in a queue, when reading a message from the queue, starting from a memory address recorded in a head value and reading a physically contiguous portion by a message length.
KR1019970052949A 1997-10-15 1997-10-15 Method for managing variable-length messages in circular queue KR100248083B1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
KR1019970052949A KR100248083B1 (en) 1997-10-15 1997-10-15 Method for managing variable-length messages in circular queue

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
KR1019970052949A KR100248083B1 (en) 1997-10-15 1997-10-15 Method for managing variable-length messages in circular queue

Publications (2)

Publication Number Publication Date
KR19990032031A KR19990032031A (en) 1999-05-06
KR100248083B1 true KR100248083B1 (en) 2000-03-15

Family

ID=19522828

Family Applications (1)

Application Number Title Priority Date Filing Date
KR1019970052949A KR100248083B1 (en) 1997-10-15 1997-10-15 Method for managing variable-length messages in circular queue

Country Status (1)

Country Link
KR (1) KR100248083B1 (en)

Families Citing this family (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
KR100397502B1 (en) * 2001-07-10 2003-09-13 엘지전자 주식회사 Dynamic interface method across multiple processor units in a multiprocessing system
KR100836621B1 (en) * 2006-04-28 2008-06-10 엔에이치엔(주) Method for Extending Queue Capacity and Message Processing Device Capable of Extending Queue Capacity
KR101980104B1 (en) * 2019-02-22 2019-08-28 주식회사 센드투 Method and apparatus for controlling data of circular queue

Also Published As

Publication number Publication date
KR19990032031A (en) 1999-05-06

Similar Documents

Publication Publication Date Title
JP3271981B2 (en) Queuing system
JP4249267B2 (en) Freeing up disk space in the file system
MX2007001185A (en) Systems, methods, computer readable medium and apparatus for memory management using nvram.
JP2531907B2 (en) Buffer memory management method and device for permitting division
KR20040007395A (en) Posted write-through cache for flash memory
US7577159B2 (en) Method, device, system and program for time-series data management
CN109032517A (en) A kind of method, apparatus and computer readable storage medium of data rule
CN109491605A (en) A kind of date storage method based on COW, device and medium
CN109213450A (en) A kind of associated metadata delet method, device and equipment based on flash array
CN109298888B (en) Queue data access method and device
KR100248083B1 (en) Method for managing variable-length messages in circular queue
JP2001265628A (en) File recording management system
JP2000267904A (en) Data recorder and its method
CN109976953A (en) A kind of data back up method
EP2672390A1 (en) Memory controller
CN111176557B (en) Data reading and storing method and data reading and storing device
US6584518B1 (en) Cycle saving technique for managing linked lists
CN106844226A (en) Bandwidth carrier based on norflash is from node control method
EP3299965B1 (en) Method and physical device for managing linked lists
KR100727399B1 (en) Memory card having the increased input/output speed
JPH10269028A (en) Control method for external storage device and cache memory
JP2000057013A (en) Trace information sampling device and mechanically readable recording medium recording program
KR100876148B1 (en) Flash memory management device and method
KR100524769B1 (en) Phone book managing method for mobile communication terminal
JP2000181785A (en) Memory management system

Legal Events

Date Code Title Description
A201 Request for examination
E701 Decision to grant or registration of patent right
GRNT Written decision to grant
FPAY Annual fee payment

Payment date: 20121105

Year of fee payment: 14

FPAY Annual fee payment

Payment date: 20131204

Year of fee payment: 15

LAPS Lapse due to unpaid annual fee