CN100478951C - Management method of index table - Google Patents
Management method of index table Download PDFInfo
- Publication number
- CN100478951C CN100478951C CNB2006101130741A CN200610113074A CN100478951C CN 100478951 C CN100478951 C CN 100478951C CN B2006101130741 A CNB2006101130741 A CN B2006101130741A CN 200610113074 A CN200610113074 A CN 200610113074A CN 100478951 C CN100478951 C CN 100478951C
- Authority
- CN
- China
- Prior art keywords
- index
- index value
- value
- zone bit
- round
- 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.)
- Active
Links
- 238000007726 management method Methods 0.000 title claims abstract description 16
- 238000000034 method Methods 0.000 claims abstract description 33
- 230000006854 communication Effects 0.000 claims description 20
- 238000004891 communication Methods 0.000 claims description 19
- 238000013507 mapping Methods 0.000 claims description 13
- 230000008569 process Effects 0.000 claims description 10
- 238000004064 recycling Methods 0.000 claims description 7
- 238000011084 recovery Methods 0.000 claims description 6
- 238000006467 substitution reaction Methods 0.000 claims 2
- 206010010099 Combined immunodeficiency Diseases 0.000 description 6
- 230000008859 change Effects 0.000 description 2
- 238000010586 diagram Methods 0.000 description 2
- 230000011664 signaling Effects 0.000 description 2
- 238000012546 transfer Methods 0.000 description 2
- CSRZQMIRAZTJOY-UHFFFAOYSA-N trimethylsilyl iodide Substances C[Si](C)(C)I CSRZQMIRAZTJOY-UHFFFAOYSA-N 0.000 description 2
- 238000003491 array Methods 0.000 description 1
- 238000001360 collision-induced dissociation Methods 0.000 description 1
- 230000007547 defect Effects 0.000 description 1
- 230000000694 effects Effects 0.000 description 1
- 238000005516 engineering process Methods 0.000 description 1
- 230000006870 function Effects 0.000 description 1
- 230000006872 improvement Effects 0.000 description 1
- 238000012986 modification Methods 0.000 description 1
- 230000004048 modification Effects 0.000 description 1
Images
Landscapes
- Data Exchanges In Wide-Area Networks (AREA)
Abstract
本发明公开了一种索引表的管理方法,具体包括:a.为索引循环队列中的索引值建立一一对应的标志位的步骤,标志位取第一个特定值表示索引值在循环队列中,取第二个特定值表示索引值不在循环队列中;b.从索引循环队列中取一个索引值,并把对应的标志位由第一个特定值改为第二个特定值的分配步骤;c.确定索引值对应的标志位并判断该标志位的取值,标志位取第二个特定值则回收该索引值的回收步骤。这种方法避免了现有技术中,为了在释放回收索引时判断该索引是否已在索引循环队列中,而对索引循环队列的多次遍历,提高了索引表的管理效率。
The invention discloses a management method of an index table, which specifically includes: a. The step of establishing a one-to-one corresponding flag bit for the index value in the index circular queue, and the flag bit takes the first specific value to indicate that the index value is in the circular queue , taking the second specific value indicates that the index value is not in the circular queue; b. taking an index value from the index circular queue, and changing the corresponding flag bit from the first specific value to the distribution step of the second specific value; c. Determine the flag bit corresponding to the index value and judge the value of the flag bit, if the flag bit takes the second specific value, then recycle the index value. This method avoids the multiple traversal of the index circular queue in order to judge whether the index is already in the index circular queue when releasing the reclaimed index in the prior art, and improves the management efficiency of the index table.
Description
技术领域 technical field
本发明涉及通信领域中普遍应用的索引表管理技术,特别是指一种利用循环队列实现一种高效率索引表的管理方法。The invention relates to an index table management technology commonly used in the communication field, in particular to a management method for realizing a high-efficiency index table by using a circular queue.
背景技术 Background technique
在通信领域中广泛使用索引表来管理各种通信资源的标识,以及管理内存等。在应用过程中,索引表的主要作用是用来生成和回收索引。现有技术中,一般要求在一个索引没有被回收之前,不能再次分配相同的索引。In the field of communication, index tables are widely used to manage the identification of various communication resources, and manage memory, etc. In the application process, the main function of the index table is to generate and recycle the index. In the prior art, it is generally required that the same index cannot be allocated again before an index is recycled.
异步传输模式(ATM,Asynchronous Transfer Mode)通信中,需要对通信信道分配一个标志用来标识这个逻辑信道,称为通道识别符(CID,Channel Identifier)。CID的分配和回收,就可以用索引表来实现。In asynchronous transfer mode (ATM, Asynchronous Transfer Mode) communication, it is necessary to assign a symbol to the communication channel to identify this logical channel, which is called a channel identifier (CID, Channel Identifier). The allocation and recovery of CID can be realized by using the index table.
在ATM通信中,利用索引表管理CID的分配和回收的过程如图1所示,不失一般性,假定索引循环队列包括5个索引,In ATM communication, the process of using the index table to manage the distribution and recovery of CID is shown in Figure 1. Without loss of generality, it is assumed that the index circular queue includes 5 indexes,
步骤1A,则初始化后的索引循环队列如附图1的第一行的队列,5个索引值分别对应5个待分配的CID;In step 1A, the initialized index circular queue is like the queue in the first row of Figure 1, and the five index values correspond to five CIDs to be allocated respectively;
步骤1B,分配第一个索引值2,队列头指针后移一个位置,队列尾指针不动;Step 1B, assign the
步骤1C,使用完索引值2之后,需要释放回收索引时,要判断索引值2是否已经在索引循环队列中,索引值2依次与索引循环队列中的其它索引值进行比较,图中虚线箭头表示遍历索引循环队列进行比较判断;Step 1C, after using the
步骤1D,如果索引循环队列中没有索引值2,则把索引值2插入队列尾,队列尾指针后移一个位置,队列头指针不动。Step 1D, if there is no
但是,现有技术在索引表较大的情况下,由于要多次遍历索引循环队列,因此效率非常低。However, in the prior art, when the index table is large, the efficiency is very low because the index circular queue needs to be traversed many times.
发明内容 Contents of the invention
有鉴于此,本发明的目的在于提供一种索引表的管理方法,同样基于循环队列实现,但是效率与现有的索引表管理方法相比有提高。In view of this, the purpose of the present invention is to provide an index table management method, which is also implemented based on a circular queue, but has improved efficiency compared with the existing index table management method.
本发明提供的一种索引表管理方法包括:a.为索引循环队列中的索引值建立一一对应的标志位的步骤,标志位取第一个特定值表示索引值在循环队列中,取第二个特定值表示索引值不在循环队列中;An index table management method provided by the present invention includes: a. The step of establishing a one-to-one corresponding flag bit for the index value in the index circular queue, the flag bit takes the first specific value to indicate that the index value is in the circular queue, takes the first Two specific values indicate that the index value is not in the circular queue;
b.从索引循环队列中取一个索引值,并把对应的标志位由第一个特定值改为第二个特定值的分配步骤;b. Take an index value from the index circular queue, and change the corresponding flag bit from the first specific value to the distribution step of the second specific value;
c.确定索引值对应的标志位并判断该标志位的取值,标志位取第二个特定值则回收该索引值的回收步骤。c. Determine the flag bit corresponding to the index value and judge the value of the flag bit, if the flag bit takes the second specific value, then recycle the index value.
该方法所述标志位形成与索引循环队列对应的标识数组,所述确定索引值对应的标志位的过程包括:用当前索引值减去索引的起始值,得到的结果是当前索引值对应的标志位在标识数组里面的位置。In this method, the flag bit forms an identification array corresponding to the index circular queue, and the process of determining the flag bit corresponding to the index value includes: subtracting the initial value of the index from the current index value, and the result obtained is the index corresponding to the current index value The position of the flag in the identity array.
该方法所述索引循环队列中的索引值是循环可用的,直到索引循环队列中的所有索引值使用完毕,则索引循环队列进入下一个分配及释放回收索引值的周期。The index values in the index circular queue described in the method are cyclically available, until all the index values in the index circular queue are used up, then the index circular queue enters the next cycle of allocating and releasing index values.
该方法所述索引循环队列有头指针和尾指针,在分配一个索引值后,把指向该索引值的头指针后移一个位置;The index circular queue described in the method has a head pointer and a tail pointer, and after an index value is allocated, the head pointer pointing to the index value is moved back by one position;
在回收一个索引值后,把指向该索引值的尾指针后移一个位置。After recycling an index value, the tail pointer pointing to the index value is moved back by one position.
该方法所述索引值和标志位在标识数组里面的位置满足映射关系:y=f(x),其中,自变量x表示索引值,y表示索引值对应的标志位在标识数组里面的位置,映射必须满足单调性,且y是连续的整数;所述确定索引值对应的标志位具体为:将当前索引值带入y=f(x)得到标志位在标识数组里面的位置。The position of the index value and the flag in the identification array described in the method satisfies the mapping relationship: y=f(x), wherein the independent variable x represents the index value, and y represents the position of the flag corresponding to the index value in the identification array, The mapping must satisfy monotonicity, and y is a continuous integer; the determination of the flag corresponding to the index value is specifically: taking the current index value into y=f(x) to obtain the position of the flag in the identification array.
本发明提供的一种通信资源管理的方法,包括:A communication resource management method provided by the present invention includes:
a.建立一个与所要管理的资源相对应的索引循环队列,每个索引值为其对应的通信资源的标识;a. Establish an index circular queue corresponding to the resources to be managed, and each index value is the identifier of its corresponding communication resource;
b.通过管理所述索引循环队列来分配或回收所述通信资源,具体为:b. Allocate or reclaim the communication resource by managing the index circular queue, specifically:
b1.为索引循环队列中的索引值建立一一对应的标志位的步骤,标志位取第一个特定值表示索引值在循环队列中,取第二个特定值表示索引值不在循环队列中;b1. The step of establishing a one-to-one corresponding flag bit for the index value in the index circular queue, the flag bit takes the first specific value to indicate that the index value is in the circular queue, and gets the second specific value to indicate that the index value is not in the circular queue;
b2.从索引循环队列中取一个索引值,并把对应的标志位由第一个特定值改为第二个特定值的分配步骤;b2. Get an index value from the index circular queue, and change the corresponding flag bit from the first specific value to the distribution step of the second specific value;
b3.确定索引值对应的标志位并判断该标志位的取值,标志位取第二个特定值则回收该索引值的回收步骤。b3. Determine the flag bit corresponding to the index value and judge the value of the flag bit, and reclaim the index value when the flag bit takes the second specific value.
该方法所述标志位形成与索引循环队列对应的标识数组,所述确定索引值对应的标志位的过程包括:用当前索引值减去索引的起始值,得到的结果是当前索引值对应的标志位在标识数组里面的位置。In this method, the flag bit forms an identification array corresponding to the index circular queue, and the process of determining the flag bit corresponding to the index value includes: subtracting the initial value of the index from the current index value, and the result obtained is the index corresponding to the current index value The position of the flag in the identity array.
该方法所述索引循环队列中的索引值是循环可用的,直到索引循环队列中的所有索引值使用完毕,则索引循环队列进入下一个分配及释放回收索引值的周期。The index values in the index circular queue described in the method are cyclically available, until all the index values in the index circular queue are used up, then the index circular queue enters the next cycle of allocating and releasing index values.
该方法所述索引循环队列有头指针和尾指针,在分配一个索引值后,把指向该索引值的头指针后移一个位置;The index circular queue described in the method has a head pointer and a tail pointer, and after an index value is allocated, the head pointer pointing to the index value is moved back by one position;
在回收一个索引值后,把指向该索引值的尾指针后移一个位置。After recycling an index value, the tail pointer pointing to the index value is moved back by one position.
该方法所述索引值和标志位在标识数组里面的位置满足映射关系:y=f(x),其中,自变量x表示索引值,y表示索引值对应的标志位在标识数组里面的位置,映射必须满足单调性,且y是连续的整数;所述确定索引值对应的标志位具体为:将当前索引值带入y=f(x)得到标志位在标识数组里面的位置。The position of the index value and the flag in the identification array described in the method satisfies the mapping relationship: y=f(x), wherein the independent variable x represents the index value, and y represents the position of the flag corresponding to the index value in the identification array, The mapping must satisfy monotonicity, and y is a continuous integer; the determination of the flag corresponding to the index value is specifically: taking the current index value into y=f(x) to obtain the position of the flag in the identification array.
从上面所述可以看出,本发明提供了一种新的索引表管理方法:建立一个与索引循环队列相对应的标识数组,标识数组里面存储能够表示索引循环队列中的索引值是否可用的标志位,在索引值的使用和释放回收过程中,通过判断标识数组中与该索引值对应的标志位的取值来判断索引值是否已在队列中。这种方法有效的解决了现有技术存在的缺陷,当索引表足够大的时候,本发明的方法的实施效果更为明显。As can be seen from the above, the present invention provides a new index table management method: establish an identification array corresponding to the index circular queue, and store in the identification array a sign that can indicate whether the index value in the index circular queue is available Bit, in the process of using and releasing the index value, judge whether the index value is already in the queue by judging the value of the flag bit corresponding to the index value in the flag array. This method effectively solves the defects in the prior art, and when the index table is large enough, the implementation effect of the method of the present invention is more obvious.
附图说明 Description of drawings
图1为现有的利用循环队列实现索引表的申请和释放回收过程示意图;Fig. 1 is the schematic diagram of the application and release recovery process of the existing index table realized by utilizing the circular queue;
图2为本发明的基于索引循环队列的索引表的管理过程示意图。FIG. 2 is a schematic diagram of the management process of the index table based on the index circular queue in the present invention.
具体实施方式 Detailed ways
本发明提供的高效率索引表的管理方法主要包括:建立一个与索引循环队列相对应的标识数组,标识数组里面存储能够表示索引表循环队列中的索引值是否可用的标志位,每一个索引值有且仅有一个对应的标志位;标志位取第一个特定值表示索引值已经在循环队列中,取第二个特定值表示索引值不在循环队列中;在索引值的使用、释放回收过程中,确定当前索引值对应的标志位在标识数组中的位置,判断标识数组中该位置上标志位的取值,如果标志位是第一个特定值,则表明当前索引值已经在索引循环队列中;如果标志位是第二个特定值,则表明当前索引值不在索引循环队列中。The management method of the high-efficiency index table provided by the present invention mainly includes: establishing an identification array corresponding to the index circular queue, storing in the identification array the flag bit that can indicate whether the index value in the index table circular queue is available, each index value There is and only one corresponding flag bit; the first specific value of the flag bit indicates that the index value is already in the circular queue, and the second specific value indicates that the index value is not in the circular queue; in the process of using, releasing and recycling the index value , determine the position of the flag bit corresponding to the current index value in the identification array, and judge the value of the flag bit at this position in the identity array. If the flag bit is the first specific value, it indicates that the current index value is already in the index circular queue In; if the flag bit is the second specific value, it indicates that the current index value is not in the index circular queue.
该方法所述索引表的使用是指系统使用索引值时,索引表会分配索引循环队列中的头指针指向的索引值;释放回收是指索引值在使用完毕后,系统会释放,此时,索引表会立刻回收这个索引值。The use of the index table described in this method means that when the system uses the index value, the index table will allocate the index value pointed to by the head pointer in the index circular queue; release and recovery means that the system will release the index value after it is used. At this time, The index table will immediately reclaim the index value.
本发明中所述索引循环队列中的索引值是循环可用的,直到索引循环队列中的所有索引值使用完毕,则索引循环队列进入下一个申请及释放回收索引值的周期。The index values in the index circular queue mentioned in the present invention are cyclically available, until all the index values in the index circular queue are used up, then the index circular queue enters the next cycle of applying for and releasing and recovering index values.
下面结合附图2在具体实施例1对本发明作进一步详细的说明。The present invention will be further described in detail in
实施例1:Example 1:
实施例1具体描述了在通信领域中基于索引表管理通信资源的过程。一般来说,在通信过程中,通信系统大多对时间有严格要求,而对很多通信资源的管理是通过建立与该资源一一对应的索引值,并将该索引值存放在索引表中来实现的,因此需要有一种效率更高的索引表管理方法来满足这种时间上的要求。
步骤2A,建立一个与索引循环队列相对应的标识数组;标识数组里面存储表示索引循环队列中对应的索引值是否可用的标志位(FLAG),且标志位的个数和索引值的个数相同。Step 2A, establish an identification array corresponding to the index circular queue; store the flag bit (FLAG) indicating whether the corresponding index value in the index circular queue is available in the identification array, and the number of flag bits is the same as the number of index values .
不失一般性,假定:标志位取0代表索引值已在索引循环队列中,取1代表索引值不在索引循环队列中;起始索引值为2,索引个数为5。如图2中A所示,为本发明的索引循环队列初始化后的状态。Without loss of generality, it is assumed that: the flag bit takes 0 to indicate that the index value is already in the index circular queue, and takes 1 to indicate that the index value is not in the index circular queue; the initial index value is 2, and the number of indexes is 5. As shown in A in FIG. 2 , it is the state of the index circular queue of the present invention after initialization.
步骤2B,在系统需要申请一个索引时,总是取索引循环队列头指针指向的索引值,在起始时刻,系统首先取第一个索引值2,索引值2减去索引起始值2,直接得到与索引值2对应的标志位在标识数组中的存储位置下标0,并把第0个FLAG置成1,表示该索引值已经被分配。Step 2B, when the system needs to apply for an index, it always takes the index value pointed to by the head pointer of the index circular queue. At the initial moment, the system first takes the
步骤2C,在释放回收索引值2时,用索引值2减去起始索引值2得到索引值2在标识数组中的存储位置0。判断第0个FLAG是1,表明该索引处于已经被分配状态,需要将该索引加到索引循环队列回收;于是将索引值加到了索引循环队列的尾部,同时将该FLAG置成0。Step 2C, when releasing and reclaiming the
步骤2A~2C中进一步包括,因为索引值的释放是无序的,因此索引值经过申请和释放回收后,索引循环队列中的索引值也是无序排列的,并总能通过使用索引值减去索引起始值得到对应标志位在标识数组中的位置。Steps 2A-2C further include, because the release of index values is out of order, so after the index values are applied for, released and recycled, the index values in the index circular queue are also arranged out of order, and can always be subtracted by using the index value The index start value gets the position of the corresponding flag bit in the identification array.
依次循环,直到索引循环队列中的所有索引值使用完毕,则索引循环队列进入下一个申请及释放回收索引值的周期。Circulate in turn until all the index values in the index circular queue are used up, then the index circular queue enters the next cycle of applying for and releasing the recycled index values.
实施例2:Example 2:
在实施例2中,索引表中索引值和标识在标识数组里面的位置满足一个映射关系:y=f(x),并且起始索引值为a,索引个数为N,在系统使用索引表时,根据映射关系确定索引值在标识数组中的位置。且索引表存在一个映射关系:y=f(x),其中,自变量x表示索引值,y表示索引值对应的标志位在标识数组里面的位置,且映射必须满足单调性,y是连续的整数。In
建立一个与索引循环队列相对应的标识数组;标识数组里面存储表示索引循环队列中对应的索引值是否可用的标志位,且标志位的个数和索引值的个数相同。Establish an identification array corresponding to the index circular queue; the identification array stores flag bits indicating whether the corresponding index value in the index circular queue is available, and the number of flag bits is the same as the number of index values.
不失一般性,假定:标志位取0代表索引值已在索引循环队列中,取l代表索引值不在索引循环队列中;起始索引值为a,索引个数为N。Without loss of generality, it is assumed that if the flag bit is set to 0, it means that the index value is already in the index circular queue, and if it is set to l, it means that the index value is not in the index circular queue; the initial index value is a, and the number of indexes is N.
在系统使用索引表时,根据映射关系确定索引值在标识数组中的位置。依次循环,直到索引循环队列中的所有索引值使用完毕,则索引循环队列进入下一个申请及释放回收索引值的周期。When the system uses the index table, the position of the index value in the identification array is determined according to the mapping relationship. Circulate in turn until all the index values in the index circular queue are used up, then the index circular queue enters the next cycle of applying for and releasing the recycled index values.
综上所述,本发明在通信领域有广泛的应用前景,可以用来分配ATM通信中的逻辑信道CID;在无线网络控制器(RNC,Radio Network Controller)中,当手机用户要进行语音通话,要通过建立AAL2连接来建立无线接入承载(RAB,Radio Access Bearer)时,使用索引表方法分配CID,可以节省用户通话接通的时间和挂机时间;移动用户打电话时,在RNC内建立无线资源控制(RRC,Radio Resource Control)连接时,可以用来分配和释放用户的临时标识;在IU接口上,索引表用来标识一条IU连接;在信令连接控制部分(SCCP,Signalling Connection Control Part),用来标识一条SCCP连接;在RNC内可以作为局内逻辑链路的标识;在RNC内可以作为小区ID,作为和nodeB通信使用的控制无线网络控制器的上下文ID(CRNC Context ID,Controlling RadioNetwork Controller Context ID);在核心网内,可以用来快速分配和释放临时移动用户身份(TMSI,Temporary Mobile Subscriber Identity)和分组临时移动用户身份(P-TMSI,Packet Temporary Mobile Subscriber Identity);另外,索引表也可以用来管理一大块的内存区或结构数组。In summary, the present invention has wide application prospect in communication field, can be used for distributing the logical channel CID in the ATM communication; When establishing an AAL2 connection to establish a radio access bearer (RAB, Radio Access Bearer), use the index table method to allocate CID, which can save the user's call connection time and hang-up time; When resource control (RRC, Radio Resource Control) is connected, it can be used to allocate and release the temporary identifier of the user; on the IU interface, the index table is used to identify an IU connection; in the signaling connection control part (SCCP, Signaling Connection Control Part ), which is used to identify an SCCP connection; it can be used as an identification of an intra-office logical link in the RNC; it can be used as a cell ID in the RNC, and as a context ID (CRNC Context ID, Controlling RadioNetwork Controller Context ID); in the core network, it can be used to quickly assign and release temporary mobile subscriber identity (TMSI, Temporary Mobile Subscriber Identity) and packet temporary mobile subscriber identity (P-TMSI, Packet Temporary Mobile Subscriber Identity); in addition, the index Tables can also be used to manage large memory areas or arrays of structures.
以上所述仅为本发明的较佳实施例而已,并不用以限制本发明,本发明在通信领域有广泛的应用前景,因此凡在本发明的精神和原则之内,所作的任何修改、等同替换、改进等,均应包含在本发明的保护范围之内。The above description is only a preferred embodiment of the present invention, and is not intended to limit the present invention. The present invention has a wide range of application prospects in the field of communication. Therefore, within the spirit and principles of the present invention, any modifications made, equivalent Replacement, improvement, etc. should all be included within the protection scope of the present invention.
Claims (10)
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CNB2006101130741A CN100478951C (en) | 2006-09-08 | 2006-09-08 | Management method of index table |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CNB2006101130741A CN100478951C (en) | 2006-09-08 | 2006-09-08 | Management method of index table |
Publications (2)
Publication Number | Publication Date |
---|---|
CN101140572A CN101140572A (en) | 2008-03-12 |
CN100478951C true CN100478951C (en) | 2009-04-15 |
Family
ID=39192526
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
CNB2006101130741A Active CN100478951C (en) | 2006-09-08 | 2006-09-08 | Management method of index table |
Country Status (1)
Country | Link |
---|---|
CN (1) | CN100478951C (en) |
Families Citing this family (2)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN104298747A (en) * | 2014-10-13 | 2015-01-21 | 福建星海通信科技有限公司 | Storage method and retrieval method of massive images |
CN107800514B (en) * | 2017-11-16 | 2019-05-14 | 中国联合网络通信集团有限公司 | A kind of transmission method of downlink data and passback base station |
-
2006
- 2006-09-08 CN CNB2006101130741A patent/CN100478951C/en active Active
Also Published As
Publication number | Publication date |
---|---|
CN101140572A (en) | 2008-03-12 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
CN101459597A (en) | Method and system for using logic resource | |
US8320303B2 (en) | Wimax network, wimax network element, and method of handling QoS requirements therein | |
CN101860810A (en) | Implementation method of speech right signaling for dispatching station of broadband multimedia trunking system based on TD-LTE | |
CN101841911A (en) | Method and device for paging terminal | |
CN101686461A (en) | Method, system and network element of access control | |
CN106571863B (en) | Hybrid switching type satellite multi-service radio resource management method based on quick indexing | |
CN101730271A (en) | Method and device for recycling radio resource | |
CN101184042B (en) | Resource management method and apparatus | |
CN100478951C (en) | Management method of index table | |
WO2009018777A1 (en) | Method and apparatus for distributing and transferring bearer identity in evolved network | |
CN100473237C (en) | Wireless access network system, wireless communication method, control server and data server | |
CN100484290C (en) | Method for realizing PDP address distribution in service cut-in | |
CN102547989A (en) | Resource allocation and addressing method for wireless communication system supporting a large number of terminals | |
CN102014376B (en) | Attaching method, paging method, detaching method and relevant equipment | |
CN101616476B (en) | Method for realizing identifier allocation processing, network side equipment and network system | |
CN101572861B (en) | Method, device and system for context management based on Sl uniform interface | |
CN105357694A (en) | 4G user data message processing method and system | |
CN100403819C (en) | A method for channel resource allocation in trunking service | |
CN103731816B (en) | A kind of user device address management method | |
CN100473224C (en) | A Method for Entity Resource Allocation | |
CN101610579A (en) | A management method and device for wireless network temporary identification | |
CN101355469B (en) | Method for processing network address and route node | |
CN100452761C (en) | Method of data packet storage in communication equipment | |
CN100596234C (en) | A circuit management method, system and media gateway for A interface | |
CN101188537B (en) | Identifier implementation method and system in wireless network media access control system |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
C06 | Publication | ||
PB01 | Publication | ||
C10 | Entry into substantive examination | ||
SE01 | Entry into force of request for substantive examination | ||
C14 | Grant of patent or utility model | ||
GR01 | Patent grant |