[Erp5-report] r11103 - /erp5/trunk/products/ERP5Type/PropertySheet/

nobody at svn.erp5.org nobody at svn.erp5.org
Mon Nov 6 10:59:15 CET 2006


Author: ivan
Date: Mon Nov  6 10:59:09 2006
New Revision: 11103

URL: http://svn.erp5.org?rev=11103&view=rev
Log:
Renamed Cache plugins

Added:
    erp5/trunk/products/ERP5Type/PropertySheet/BaseCache.py
    erp5/trunk/products/ERP5Type/PropertySheet/DistributedRamCache.py
    erp5/trunk/products/ERP5Type/PropertySheet/SQLCache.py

Added: erp5/trunk/products/ERP5Type/PropertySheet/BaseCache.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Type/PropertySheet/BaseCache.py?rev=11103&view=auto
==============================================================================
--- erp5/trunk/products/ERP5Type/PropertySheet/BaseCache.py (added)
+++ erp5/trunk/products/ERP5Type/PropertySheet/BaseCache.py Mon Nov  6 10:59:09 2006
@@ -1,0 +1,12 @@
+class BaseCache:
+  """
+  """
+
+  _properties = (  
+        {'id'          : 'cache_expire_check_interval',
+         'description' : 'Cache expire check interval',
+         'type'        : 'int',
+         'default'     :  360,
+         'mode'        : 'w' ,
+        },)
+

Added: erp5/trunk/products/ERP5Type/PropertySheet/DistributedRamCache.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Type/PropertySheet/DistributedRamCache.py?rev=11103&view=auto
==============================================================================
--- erp5/trunk/products/ERP5Type/PropertySheet/DistributedRamCache.py (added)
+++ erp5/trunk/products/ERP5Type/PropertySheet/DistributedRamCache.py Mon Nov  6 10:59:09 2006
@@ -1,0 +1,12 @@
+class DistributedRamCache:
+  """
+  """
+
+  _properties = (        
+        {'id'          : 'server',
+         'description' : 'Memcached server address( you can specify multiple servers by separating them with ;)',
+         'type'        : 'string',
+         'default'     : '127.0.0.1:11211',
+        },
+        )
+

Added: erp5/trunk/products/ERP5Type/PropertySheet/SQLCache.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Type/PropertySheet/SQLCache.py?rev=11103&view=auto
==============================================================================
--- erp5/trunk/products/ERP5Type/PropertySheet/SQLCache.py (added)
+++ erp5/trunk/products/ERP5Type/PropertySheet/SQLCache.py Mon Nov  6 10:59:09 2006
@@ -1,0 +1,11 @@
+class SQLCache:
+  """
+  """
+
+  _properties = (  
+        {'id'          : 'cache_table_name',
+         'description' : 'Cache table name',
+         'type'        : 'string',
+         'default'     : 'cache',
+        },
+        )




More information about the Erp5-report mailing list