JP4831785B2 - 適応セッション圧縮管理方法、圧縮マネージャ、およびセッション管理システム - Google Patents
適応セッション圧縮管理方法、圧縮マネージャ、およびセッション管理システム Download PDFInfo
- Publication number
- JP4831785B2 JP4831785B2 JP2008521917A JP2008521917A JP4831785B2 JP 4831785 B2 JP4831785 B2 JP 4831785B2 JP 2008521917 A JP2008521917 A JP 2008521917A JP 2008521917 A JP2008521917 A JP 2008521917A JP 4831785 B2 JP4831785 B2 JP 4831785B2
- Authority
- JP
- Japan
- Prior art keywords
- session
- state information
- compression
- session state
- application server
- 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
Links
- 238000007906 compression Methods 0.000 title claims description 124
- 230000006835 compression Effects 0.000 title claims description 119
- 230000003044 adaptive effect Effects 0.000 title description 44
- 238000007726 management method Methods 0.000 title description 39
- 238000000034 method Methods 0.000 claims description 67
- 230000006837 decompression Effects 0.000 claims description 30
- 239000000872 buffer Substances 0.000 claims description 23
- 230000004044 response Effects 0.000 claims description 9
- 230000007246 mechanism Effects 0.000 description 15
- 230000008569 process Effects 0.000 description 9
- 238000010586 diagram Methods 0.000 description 6
- 230000006870 function Effects 0.000 description 4
- 230000008901 benefit Effects 0.000 description 3
- 235000014510 cooky Nutrition 0.000 description 3
- 238000012546 transfer Methods 0.000 description 3
- 238000011161 development Methods 0.000 description 2
- 230000001965 increasing effect Effects 0.000 description 2
- 238000010276 construction Methods 0.000 description 1
- 230000002708 enhancing effect Effects 0.000 description 1
- 230000003993 interaction Effects 0.000 description 1
- 238000012986 modification Methods 0.000 description 1
- 230000004048 modification Effects 0.000 description 1
- 230000002688 persistence Effects 0.000 description 1
- 238000012545 processing Methods 0.000 description 1
- 238000010561 standard procedure Methods 0.000 description 1
Images
Classifications
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04L—TRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
- H04L69/00—Network arrangements, protocols or services independent of the application payload and not provided for in the other groups of this subclass
- H04L69/04—Protocols for data compression, e.g. ROHC
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04L—TRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
- H04L67/00—Network arrangements or protocols for supporting network services or applications
- H04L67/01—Protocols
- H04L67/02—Protocols based on web technology, e.g. hypertext transfer protocol [HTTP]
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04L—TRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
- H04L67/00—Network arrangements or protocols for supporting network services or applications
- H04L67/14—Session management
- H04L67/142—Managing session states for stateless protocols; Signalling session states; State transitions; Keeping-state mechanisms
Landscapes
- Engineering & Computer Science (AREA)
- Computer Networks & Wireless Communication (AREA)
- Signal Processing (AREA)
- Computer Security & Cryptography (AREA)
- Computer And Data Communications (AREA)
Description
1.本発明によるアプリケーション・サーバ内の適応セッション圧縮は、セッション情報内に大型オブジェクトが存在するときにシステム・パフォーマンスを強化することができる。Java(JavaおよびすべてのJavaベースの商標は、米国、その他の国、またはその両方におけるサン・マイクロシステムズ社の商標である)プログラムは大型オブジェクトの直列化および非直列化の際に大量の時間を費やすことになるので、より大型のオブジェクトを圧縮すると、この時間を大幅に削減することになり、その結果、システム・パフォーマンスを強化することになる。
2.本発明によるアプリケーション・サーバ内の適応セッション圧縮は、アプリケーション・サーバ内に保持可能なユーザの数を増加することができる。システム・リソースをより効率的に使用することにより、CPU、メモリ、およびその他のリソースに対して比較的均等に負荷をかけることができ、その結果、システム容量を増加することができる。
3.本発明によるアプリケーション・サーバ内の適応セッション圧縮は、セッション情報の圧縮および管理によりシステムのフォールト・トレランスを増加することができる。
[threshold] //セッション状態情報のサイズがこの値、たとえば、500kを超えると、圧縮が始まる。
Size=500,000
[compressor] //ユーザはここに、使用する予定の圧縮器を指定することができる。
Zip=Zipcompressor
Rar=Rarcompressor...
[CPU] //ユーザはここに、最大、圧縮なしなど、CPUの使用率と対応する圧縮方法との関係を百分率を示す数字で指定することができる。
20=Best
50=Normal
70=Fast
80=None
[Memory] //ユーザはここに、メモリの使用率と圧縮方法との関係を百分率を示す数字で指定することができる。
20=Fast
50=Normal
70=Best
...
public classxHttpSession {
//保存すべきセッション状態オブジェクト
HttpSessionsession=null;
//適応セッション圧縮マネージャ
AdaptiveSessionManagerasm=
AdaptiveSessionManager.getInstance();
//構築関数
publicxHttpSession(HttpSession session){
this.session=session;
}
//セッション情報を保存する
publicsetAttribute (String key,object value) {
//圧縮が必要であるかどうかをチェックする
if ( asm.check(value)==true) {
//圧縮が必要である場合、適応セッション圧縮
//マネージャは、圧縮するために適切な圧縮器を選択し、
//圧縮した値を元のセッション・
//マネージャに入れる
objectnewValue=asm.getCompressor().compress (value);
session.setAttribute(key, newValue);
}
}
//セッション状態オブジェクトを読み取る
public ObjectgetAttribute(String key){
//システム・セッション・マネージャにより値を取り出す
Objectvalue=session.getAttribute(key);
//値がすでに圧縮されているかどうかをチェックする
if(asm.isCompressed(value)){
value=asm.uncompress(value);
}
return value;
}
Claims (10)
- アプリケーション・サーバであって、
ユーザおよびアプリケーションのセッション状態情報を管理し維持するセッション・マネージャと、
前記セッション・マネージャと前記アプリケーションとの間で前記ユーザのセッション状態情報を転送するセッション状態情報提示コンポーネントと、
アプリケーション・サーバのユーザまたはシステム管理者が構成ファイル内に構成情報を設定するインターフェース・ユニットと、
アプリケーション・サーバ内のセッション圧縮マネージャであって、
前記セッション・マネージャからの前記セッション状態情報が保存される必要があるものとして示された場合に当該セッション状態情報をバッファに入れるセッション状態情報バッファ・コンポーネントであって、前記セッション状態情報が、前記セッション・マネージャと当該セッション状態情報バッファ・コンポーネントとの間のインターフェースにより前記セッション・マネージャから当該セッション状態情報バッファ・コンポーネントに転送される、前記セッション状態情報バッファ・コンポーネントと、
前記ユーザまたは前記システム管理者によって設定された前記構成情報を構成ファイルから取得する構成情報取得コンポーネントと、
前記セッション状態情報バッファ・コンポーネント中の前記セッション状態情報が、(1)圧縮しきい値である当該セッション状態情報のサイズと、(2)圧縮器と、(3)システム・リソースの条件に関連付けられた圧縮方法とを含む前記構成情報に従って、当該セッション状態情報を圧縮する必要があるかどうかを判別する圧縮決定コンポーネントと、
前記セッション状態情報を圧縮する必要があるとの判断に応じて、前記アプリケーション・サーバの前記システム・リソースの前記条件に従って適切な圧縮器および適切な圧縮方法を決定し、対応する圧縮器に通知する圧縮方法決定コンポーネントと、
前記圧縮方法決定コンポーネントからの命令に応じて前記セッション状態情報を圧縮する少なくとも一つの圧縮器と
を有する、前記セッション圧縮マネージャと
を有する、前記アプリケーション・サーバ。 - 前記セッション圧縮マネージャが、
アプリケーションに提示すべきであると示された前記セッション状態情報を前記セッション・マネージャから取得し、前記セッション状態情報がすでに圧縮されているかどうかを判別し、前記セッション状態情報がすでに圧縮されている場合に前記対応する圧縮解除器に通知する圧縮解除決定コンポーネントと、
前記セッション状態情報を圧縮解除する圧縮解除器のうちの少なくとも1つと
をさらに有する、請求項1に記載のアプリケーション・サーバ。 - 前記圧縮しきい値が、前記セッション状態情報のサイズに関するしきい値と、前記アプリケーション・サーバの前記システム・リソースに関するしきい値とを含む、請求項1に記載のアプリケーション・サーバ。
- 前記圧縮方法が、前記アプリケーション・サーバ内のCPUの使用率に応じて、最良圧縮、通常圧縮、または圧縮なしとして設定される、請求項1に記載のアプリケーション・サーバ。
- 前記圧縮方法が、前記アプリケーション・サーバ内のメモリの使用率に応じて、高速圧縮、通常圧縮、または最良圧縮として設定される、請求項1に記載のアプリケーション・サーバ。
- アプリケーション・サーバにおいてセッション圧縮を管理する方法であって、前記アプリケーション・サーバが、
保存される必要があるものとして示されたセッション状態情報をアプリケーション・サーバ内のセッション・マネージャから取得し、且つ、前記セッション・マネージャからの前記セッション状態情報が保存される必要があるものとして示された場合に当該セッション状態情報をバッファに入れるステップであって、前記セッション状態情報が、前記セッション・マネージャと当該セッション状態情報バッファ・コンポーネントとの間のインターフェースにより前記セッション・マネージャから当該セッション状態情報バッファ・コンポーネントに転送される、前記バッファに入れるステップと、
ユーザまたはシステム管理者によって設定された構成情報を構成ファイルから取り出すステップと、
前記セッション状態情報バッファ・コンポーネント中の前記セッション状態情報が、(1)圧縮しきい値である当該セッション状態情報のサイズと、(2)圧縮器と、(3)システム・リソースの条件に関連付けられた圧縮方法とを含む前記構成情報に従って、前記セッション状態情報を圧縮すべきかどうかを判別するステップと、
前記セッション状態情報を圧縮する必要があるとの判断に応じて、前記セッション状態情報を圧縮するために、前記アプリケーション・サーバの前記システム・リソースの前記条件に応じて適切な圧縮器および適切な圧縮方法を決定するステップと、
前記セッション・マネージャ内の指定の位置に前記セッション状態情報を保管し、前記セッション状態情報が圧縮される場合に、前記セッション状態情報とともに対応する圧縮器のタイプ情報を保管するステップと
を実行することを含む、前記方法。 - 前記アプリケーション・サーバが、
アプリケーションに提示すべきであると示された前記セッション状態情報を前記セッション・マネージャから取得するステップと、
前記セッション状態情報がすでに圧縮されているかどうかを判別するステップと、
前記セッション状態情報がすでに圧縮されている場合に、前記セッション状態情報とともに保管された前記圧縮器の前記タイプ情報に応じて前記対応する圧縮解除器を使用して前記セッション状態情報を圧縮解除するステップと
を実行することをさらに含む、請求項6に記載の方法。 - 前記圧縮しきい値が、前記セッション状態情報のサイズに関するしきい値と、前記アプリケーション・サーバの前記システム・リソースに関するしきい値とを含む、請求項6に記載の方法。
- 前記圧縮方法が、前記アプリケーション・サーバ内のCPUの使用率に応じて、最良圧縮、通常圧縮、または圧縮なしとして設定される、請求項6に記載の方法。
- 前記圧縮方法が、前記アプリケーション・サーバ内のメモリの使用率に応じて、高速圧縮、通常圧縮、または最良圧縮として設定される、請求項6に記載の方法。
Applications Claiming Priority (3)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| CN200510085305.8 | 2005-07-22 | ||
| CN 200510085305 CN1901537A (zh) | 2005-07-22 | 2005-07-22 | 自适应会话压缩管理方法、压缩管理器及会话管理系统 |
| PCT/EP2006/063707 WO2007009865A1 (en) | 2005-07-22 | 2006-06-29 | Adaptive session compression management method, compression manager and session management system |
Publications (2)
| Publication Number | Publication Date |
|---|---|
| JP2009503635A JP2009503635A (ja) | 2009-01-29 |
| JP4831785B2 true JP4831785B2 (ja) | 2011-12-07 |
Family
ID=36997262
Family Applications (1)
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| JP2008521917A Expired - Fee Related JP4831785B2 (ja) | 2005-07-22 | 2006-06-29 | 適応セッション圧縮管理方法、圧縮マネージャ、およびセッション管理システム |
Country Status (4)
| Country | Link |
|---|---|
| US (1) | US8943223B2 (ja) |
| JP (1) | JP4831785B2 (ja) |
| CN (1) | CN1901537A (ja) |
| WO (1) | WO2007009865A1 (ja) |
Families Citing this family (52)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US7788335B2 (en) | 2001-01-11 | 2010-08-31 | F5 Networks, Inc. | Aggregated opportunistic lock and aggregated implicit lock management for locking aggregated files in a switched file system |
| US8239354B2 (en) * | 2005-03-03 | 2012-08-07 | F5 Networks, Inc. | System and method for managing small-size files in an aggregated file system |
| AU2002249939A1 (en) | 2001-01-11 | 2002-07-24 | Z-Force Communications, Inc. | File switch and switched file system |
| US7512673B2 (en) | 2001-01-11 | 2009-03-31 | Attune Systems, Inc. | Rule based aggregation of files and transactions in a switched file system |
| US8195760B2 (en) | 2001-01-11 | 2012-06-05 | F5 Networks, Inc. | File aggregation in a switched file system |
| US7509322B2 (en) | 2001-01-11 | 2009-03-24 | F5 Networks, Inc. | Aggregated lock management for locking aggregated files in a switched file system |
| US20040133606A1 (en) | 2003-01-02 | 2004-07-08 | Z-Force Communications, Inc. | Directory aggregation for files distributed over a plurality of servers in a switched file system |
| US7885970B2 (en) | 2005-01-20 | 2011-02-08 | F5 Networks, Inc. | Scalable system for partitioning and accessing metadata over multiple servers |
| US7958347B1 (en) | 2005-02-04 | 2011-06-07 | F5 Networks, Inc. | Methods and apparatus for implementing authentication |
| US8417746B1 (en) | 2006-04-03 | 2013-04-09 | F5 Networks, Inc. | File system management with enhanced searchability |
| US8682916B2 (en) | 2007-05-25 | 2014-03-25 | F5 Networks, Inc. | Remote file virtualization in a switched file system |
| US8117244B2 (en) | 2007-11-12 | 2012-02-14 | F5 Networks, Inc. | Non-disruptive file migration |
| US8180747B2 (en) | 2007-11-12 | 2012-05-15 | F5 Networks, Inc. | Load sharing cluster file systems |
| US8548953B2 (en) | 2007-11-12 | 2013-10-01 | F5 Networks, Inc. | File deduplication using storage tiers |
| US8352785B1 (en) | 2007-12-13 | 2013-01-08 | F5 Networks, Inc. | Methods for generating a unified virtual snapshot and systems thereof |
| US8549582B1 (en) | 2008-07-11 | 2013-10-01 | F5 Networks, Inc. | Methods for handling a multi-protocol content name and systems thereof |
| JP5460239B2 (ja) * | 2009-10-29 | 2014-04-02 | 三菱電機株式会社 | スクリーン記録装置 |
| US10721269B1 (en) | 2009-11-06 | 2020-07-21 | F5 Networks, Inc. | Methods and system for returning requests with javascript for clients before passing a request to a server |
| US8463944B2 (en) * | 2010-01-05 | 2013-06-11 | International Business Machines Corporation | Optimal compression process selection methods |
| US8204860B1 (en) | 2010-02-09 | 2012-06-19 | F5 Networks, Inc. | Methods and systems for snapshot reconstitution |
| US9195500B1 (en) | 2010-02-09 | 2015-11-24 | F5 Networks, Inc. | Methods for seamless storage importing and devices thereof |
| US8347100B1 (en) | 2010-07-14 | 2013-01-01 | F5 Networks, Inc. | Methods for DNSSEC proxying and deployment amelioration and systems thereof |
| US9286298B1 (en) | 2010-10-14 | 2016-03-15 | F5 Networks, Inc. | Methods for enhancing management of backup data sets and devices thereof |
| US8635185B2 (en) * | 2011-06-27 | 2014-01-21 | Oracle International Corporation | System and method for providing session affinity in a clustered database environment |
| US8396836B1 (en) | 2011-06-30 | 2013-03-12 | F5 Networks, Inc. | System for mitigating file virtualization storage import latency |
| WO2013033242A1 (en) * | 2011-08-29 | 2013-03-07 | Latakoo, Inc. | Compressing, transcoding, sending, and retrieving video and audio files in a server-based system |
| US8463850B1 (en) | 2011-10-26 | 2013-06-11 | F5 Networks, Inc. | System and method of algorithmically generating a server side transaction identifier |
| US9020912B1 (en) | 2012-02-20 | 2015-04-28 | F5 Networks, Inc. | Methods for accessing data in a compressed file system and devices thereof |
| CN103761153B (zh) * | 2012-05-02 | 2018-02-27 | 北京奇虎科技有限公司 | 压缩工具资源调用方法及装置 |
| CN102708010B (zh) * | 2012-05-02 | 2014-03-26 | 北京奇虎科技有限公司 | 压缩工具资源调用方法及装置 |
| US9519501B1 (en) | 2012-09-30 | 2016-12-13 | F5 Networks, Inc. | Hardware assisted flow acceleration and L2 SMAC management in a heterogeneous distributed multi-tenant virtualized clustered system |
| US10375155B1 (en) | 2013-02-19 | 2019-08-06 | F5 Networks, Inc. | System and method for achieving hardware acceleration for asymmetric flow connections |
| US9554418B1 (en) | 2013-02-28 | 2017-01-24 | F5 Networks, Inc. | Device for topology hiding of a visited network |
| US20140258247A1 (en) * | 2013-03-05 | 2014-09-11 | Htc Corporation | Electronic apparatus for data access and data access method therefor |
| WO2015057031A1 (ko) * | 2013-10-18 | 2015-04-23 | 삼성전자 주식회사 | 전자 장치의 메모리 압축 방법 및 장치 |
| US20160011816A1 (en) * | 2014-07-09 | 2016-01-14 | Nexenta Systems, Inc. | Method to optimize inline i/o processing in tiered distributed storage systems |
| US11838851B1 (en) | 2014-07-15 | 2023-12-05 | F5, Inc. | Methods for managing L7 traffic classification and devices thereof |
| US10182013B1 (en) | 2014-12-01 | 2019-01-15 | F5 Networks, Inc. | Methods for managing progressive image delivery and devices thereof |
| US11895138B1 (en) | 2015-02-02 | 2024-02-06 | F5, Inc. | Methods for improving web scanner accuracy and devices thereof |
| US10834065B1 (en) | 2015-03-31 | 2020-11-10 | F5 Networks, Inc. | Methods for SSL protected NTLM re-authentication and devices thereof |
| CN105160013A (zh) * | 2015-09-24 | 2015-12-16 | 珠海许继芝电网自动化有限公司 | 一种数据采集系统的通信报文保存方法 |
| US10404698B1 (en) | 2016-01-15 | 2019-09-03 | F5 Networks, Inc. | Methods for adaptive organization of web application access points in webtops and devices thereof |
| US10797888B1 (en) | 2016-01-20 | 2020-10-06 | F5 Networks, Inc. | Methods for secured SCEP enrollment for client devices and devices thereof |
| JP6701826B2 (ja) * | 2016-03-10 | 2020-05-27 | 富士通株式会社 | 情報処理装置、システム、方法及びプログラム |
| US10412198B1 (en) | 2016-10-27 | 2019-09-10 | F5 Networks, Inc. | Methods for improved transmission control protocol (TCP) performance visibility and devices thereof |
| US10567492B1 (en) | 2017-05-11 | 2020-02-18 | F5 Networks, Inc. | Methods for load balancing in a federated identity environment and devices thereof |
| US11223689B1 (en) | 2018-01-05 | 2022-01-11 | F5 Networks, Inc. | Methods for multipath transmission control protocol (MPTCP) based session migration and devices thereof |
| US10833943B1 (en) | 2018-03-01 | 2020-11-10 | F5 Networks, Inc. | Methods for service chaining and devices thereof |
| CN109729132B (zh) * | 2018-05-07 | 2022-03-15 | 平安普惠企业管理有限公司 | 开关控制方法、装置、设备和计算机可读存储介质 |
| US12003422B1 (en) | 2018-09-28 | 2024-06-04 | F5, Inc. | Methods for switching network packets based on packet data and devices |
| CN109831409B (zh) * | 2018-12-19 | 2021-06-18 | 东软集团股份有限公司 | 数据传输方法、装置、计算机可读存储介质及电子设备 |
| CN115794413B (zh) * | 2023-01-09 | 2024-05-14 | 荣耀终端有限公司 | 一种内存处理方法及相关装置 |
Citations (4)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US20020073298A1 (en) * | 2000-11-29 | 2002-06-13 | Peter Geiger | System and method for managing compression and decompression of system memory in a computer system |
| JP2003141068A (ja) * | 2001-11-02 | 2003-05-16 | Canon Software Inc | セッション管理装置およびセッション管理方法およびプログラムおよび記録媒体 |
| US6832380B1 (en) * | 1996-06-28 | 2004-12-14 | Tarantella, Inc. | Client-server application partitioning with metering technique for distributed computing |
| JP2005027304A (ja) * | 2003-06-30 | 2005-01-27 | Microsoft Corp | 接続操作を用いるネットワーク負荷分散 |
Family Cites Families (1)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| FI107000B (fi) * | 1999-02-17 | 2001-05-15 | Nokia Mobile Phones Ltd | Otsikon pakkaaminen reaaliaikaisissa palveluissa |
-
2005
- 2005-07-22 CN CN 200510085305 patent/CN1901537A/zh active Pending
-
2006
- 2006-06-29 JP JP2008521917A patent/JP4831785B2/ja not_active Expired - Fee Related
- 2006-06-29 US US11/996,485 patent/US8943223B2/en not_active Expired - Fee Related
- 2006-06-29 WO PCT/EP2006/063707 patent/WO2007009865A1/en not_active Ceased
Patent Citations (4)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US6832380B1 (en) * | 1996-06-28 | 2004-12-14 | Tarantella, Inc. | Client-server application partitioning with metering technique for distributed computing |
| US20020073298A1 (en) * | 2000-11-29 | 2002-06-13 | Peter Geiger | System and method for managing compression and decompression of system memory in a computer system |
| JP2003141068A (ja) * | 2001-11-02 | 2003-05-16 | Canon Software Inc | セッション管理装置およびセッション管理方法およびプログラムおよび記録媒体 |
| JP2005027304A (ja) * | 2003-06-30 | 2005-01-27 | Microsoft Corp | 接続操作を用いるネットワーク負荷分散 |
Also Published As
| Publication number | Publication date |
|---|---|
| US20080209073A1 (en) | 2008-08-28 |
| US8943223B2 (en) | 2015-01-27 |
| JP2009503635A (ja) | 2009-01-29 |
| WO2007009865A1 (en) | 2007-01-25 |
| CN1901537A (zh) | 2007-01-24 |
Similar Documents
| Publication | Publication Date | Title |
|---|---|---|
| JP4831785B2 (ja) | 適応セッション圧縮管理方法、圧縮マネージャ、およびセッション管理システム | |
| US7181457B2 (en) | System and method for utilizing compression in database caches to facilitate access to database information | |
| US7945698B2 (en) | System and method for partial data compression and data transfer | |
| US8539191B2 (en) | Estimating space in a compressed volume | |
| US6604106B1 (en) | Compression and delivery of web server content | |
| US7543018B2 (en) | Caching signatures | |
| US9652293B2 (en) | System and method for dynamic cache data decompression in a traffic director environment | |
| US8239354B2 (en) | System and method for managing small-size files in an aggregated file system | |
| KR101035302B1 (ko) | 클라우드 시스템 및 클라우드 시스템에서 파일 압축 및 전송 방법 | |
| US7577960B2 (en) | System and method for managing cached objects using notifications bonds | |
| US20020133537A1 (en) | Server cluster and server-side cooperative caching method for use with same | |
| US11256663B2 (en) | Caching with dynamic and selective compression of content | |
| US20120303905A1 (en) | Method and apparatus for implementing cache | |
| US8502710B2 (en) | Methods and computer program products for providing a compressed circular buffer for efficient storage of network performance data | |
| CN115344551A (zh) | 一种数据迁移的方法以及数据节点 | |
| US6615275B2 (en) | System for increasing data access in network having compression device for determining and controlling data/object compression based on predetermined maximum percentage of CPU processing capacity | |
| US6785784B1 (en) | Method for protective cache replacement | |
| Chi et al. | COMPRESSIONPROXYSERVE R: DESIGNANDIMPLEMENT AT ION | |
| CN107402818A (zh) | 一种客户端读写缓存分离的方法及系统 | |
| US11994957B1 (en) | Adaptive compression to improve reads on a deduplication file system | |
| US7792845B1 (en) | Network acceleration device having logically separate views of a cache space | |
| Tchaye-Kondi et al. | Hadoop Perfect File: A fast access container for small files with direct in disc metadata access | |
| CN114900485B (zh) | 访问网络文件存储的方法、电子设备及系统 | |
| Canali et al. | A two-level distributed architecture for efficient Web content adaptation and delivery | |
| Huang et al. | A Dynamic threshold technique for XML data transmission on networks |
Legal Events
| Date | Code | Title | Description |
|---|---|---|---|
| A621 | Written request for application examination |
Free format text: JAPANESE INTERMEDIATE CODE: A621 Effective date: 20090227 |
|
| A131 | Notification of reasons for refusal |
Free format text: JAPANESE INTERMEDIATE CODE: A131 Effective date: 20110215 |
|
| A521 | Request for written amendment filed |
Free format text: JAPANESE INTERMEDIATE CODE: A821 Effective date: 20110309 Free format text: JAPANESE INTERMEDIATE CODE: A523 Effective date: 20110309 |
|
| RD12 | Notification of acceptance of power of sub attorney |
Free format text: JAPANESE INTERMEDIATE CODE: A7432 Effective date: 20110309 |
|
| A521 | Request for written amendment filed |
Free format text: JAPANESE INTERMEDIATE CODE: A523 Effective date: 20110316 |
|
| A131 | Notification of reasons for refusal |
Free format text: JAPANESE INTERMEDIATE CODE: A131 Effective date: 20110615 |
|
| A521 | Request for written amendment filed |
Free format text: JAPANESE INTERMEDIATE CODE: A821 Effective date: 20110815 Free format text: JAPANESE INTERMEDIATE CODE: A523 Effective date: 20110815 |
|
| TRDD | Decision of grant or rejection written | ||
| A521 | Request for written amendment filed |
Free format text: JAPANESE INTERMEDIATE CODE: A821 Effective date: 20110909 |
|
| RD14 | Notification of resignation of power of sub attorney |
Free format text: JAPANESE INTERMEDIATE CODE: A7434 Effective date: 20110909 |
|
| A01 | Written decision to grant a patent or to grant a registration (utility model) |
Free format text: JAPANESE INTERMEDIATE CODE: A01 Effective date: 20110909 |
|
| A01 | Written decision to grant a patent or to grant a registration (utility model) |
Free format text: JAPANESE INTERMEDIATE CODE: A01 |
|
| A61 | First payment of annual fees (during grant procedure) |
Free format text: JAPANESE INTERMEDIATE CODE: A61 Effective date: 20110916 |
|
| R150 | Certificate of patent or registration of utility model |
Free format text: JAPANESE INTERMEDIATE CODE: R150 |
|
| FPAY | Renewal fee payment (event date is renewal date of database) |
Free format text: PAYMENT UNTIL: 20140930 Year of fee payment: 3 |
|
| LAPS | Cancellation because of no payment of annual fees |