In-Portal Issue Tracker

Welcome to the In-Portal Open Source CMS Issue Tracker! This is a central management / tracking tool for all types of tasks / issues / bugs for the In-Portal Project. Before reporting any issues, please make sure to read the Guide into Issue Tracker and How to Properly Test and Report Bugs!

Viewing Issue Advanced Details Jump to Notes ] Wiki ]  Related Changesets ] View Simple ] Issue History ] Print ]
ID Category Type Reproducibility Date Submitted Last Update
0000107 [In-Portal CMS] Optimization feature request always 2009-07-07 09:53 2012-08-11 12:20
Reporter Dmitry View Status public Project Name In-Portal CMS
Assigned To alex Developer
Priority normal Resolution fixed Platform
Status closed   OS
  OS Version
ETA none Fixed in Version 5.1.0-B1 Product Version
  Target Version 5.1.0 Product Build
Time EstimateNo estimate
Summary 0000107: Implement "MemCached" functionality
Description Add MemCached implementation to NParser.

1. Caching for:

- ConfigReaders
- ModRewrite URL variables (serialized)
- Permissions (double-check on Groups, possibly GroupId is not in Key now, overall Key in Memcache should contain all parameters that are used for getting given permission value).
- Output (by CategoryRebuildSerial, template/std, CategoryId)
- Other possible places


2. Review and add good Reset Cache options (full reset or partial)


3. Configuration of MemCached servers - should specified in Configuration->Advanced Settings.


4. Review Security options.
Steps To Reproduce
Additional Information We can utilize VO project as it has basic MemCached implemented and used already.
Tags No tags attached.
Reference
Change Log Message
Estimate Points 0
Attached Files vsd file icon Caching_process.vsd [^] (64,512 bytes) 2010-02-13 07:50
patch file icon memcache_modules.patch [^] (15,971 bytes) 2010-02-24 07:49 [Show Content]
patch file icon memcache_core.patch [^] (172,247 bytes) 2010-02-24 10:46 [Show Content]
patch file icon memcache_themes.patch [^] (24,485 bytes) 2010-02-24 12:04 [Show Content]
patch file icon memcache_notification_addon.patch [^] (867 bytes) 2010-03-02 14:18 [Show Content]
patch file icon memcache_theme_rebuild_fix.patch [^] (863 bytes) 2010-03-07 13:29 [Show Content]
patch file icon memcache_install_fix.patch [^] (478 bytes) 2010-03-21 16:29 [Show Content]
patch file icon memcache_install_fix_v2.patch [^] (1,035 bytes) 2010-03-24 08:33 [Show Content]
patch file icon memcache_custom_field_caching_on_install.patch [^] (2,078 bytes) 2010-03-24 08:39 [Show Content]
patch file icon cached_permissions_not_updated_after_group_edit.patch [^] (1,651 bytes) 2010-04-13 12:40 [Show Content]
jpg file icon QuestionAboutCachingNumberOfProductsInCategory.jpg [^] (580,125 bytes) 2010-04-25 18:24
patch file icon overlaped_cache_names_fix.patch [^] (477 bytes) 2010-05-12 07:28 [Show Content]
patch file icon memcache_addon.patch [^] (6,083 bytes) 2010-05-24 14:50 [Show Content]

- Relationships Relation Graph ] Dependency Graph ]
related to 0000049closed (5.1.0)alex Merge ConfigurationAdmin and ConfigurationValues table 
related to 0000588closed (5.1.0)alex Implement "APC" Caching Storage 
related to 0001326closed (5.2.0)alex Fatal error when trying to use parser tag caching in 5.2.0 on PHP version below 5.3.1 
parent of 0000357closed (5.1.0)alex Form modification detector (it's php part) works strange 
parent of 0000884closed (5.1.1)alex Fatal error "Method name must be a string" on home page after Memcached server restart 
parent of 0000885closed (5.1.1)alex Additional images of category items are not displayed (with memory caching enabled) 
parent of 0000958closed (5.1.2)alex Editing language on section edit form don't change on primary language change 
related to 0000579closed (5.1.0)alex Ability to use PerPage, SortBy and Page params from URL Query 
related to 0000580closed (5.1.1)Dmitry Issues with change log section 
related to 0000812closed (5.1.1)alex Sticky cache, when Memcached is not used 
related to 0000882closed (5.1.1)alex Memcache issues 
related to 0000877closed (5.1.1)alex Single Cache Serial-key for Developers on the same Server 
related to 0001028closed (5.1.3)alex Missing "Database Name" in Memory Cache Key 
related to 0001123closed (5.2.0)alex Parallel cache rebuild problem could cause high server load 
related to 0001201closed (5.2.0)alex Fatal error during Installation on States import with MySQL in Strict Mode 
related to 0001332closed (5.2.0)alex Spelling suggestion cache not reset on dictionary change 
child of 0000296needs work (Icebox)alex Research and Create Optimization Plan 

-  Notes
User avatar (0000423)
alex (manager)
2009-09-13 05:29

Also we could think up a way to cache other parts of system, like results of database queries for "options_sql" option of kOptionsFormatter class.
User avatar (0000434)
Dmitry (manager)
2009-09-14 09:45

Moving this to Optimization 5.1.0 release.
User avatar (0000441)
Dmitry (manager)
2009-09-15 01:11

1. Do complete review of In-Portal system - do detailed review using profiler.

2. Come up with architecture so we can Cache:

a. Permissions
b. SQLs
c. Config Data
d. Mod-rewrite variables
e. Parts of the Output
f. Entire templates
g. Anything else you can think of?

3. We should be able to Specify Caching time (I know MemCache doesn't have proper way of resetting the Cache) + Ability to reset it manually for each specified or all variables.

In the end we need detailed plan / quote for development.
User avatar (0001479)
Dmitry (manager)
2010-02-15 16:18

Below is a plan for Aggressive Caching part:

1. collect prefixes from template (associated with page)

2. put them into Category (or ThemeFiles) table

3. allow user to modify that new field, where prefixes are listed

4. recollect prefixes, when template is modified (check, when it's is compiled)

5. in parser:
- wrap all template content (virtually) in m_Cache tags with "key" value equals to that new field from Category table
- pages, that are not present in Category table will be never cached this way
User avatar (0001480)
Dmitry (manager)
2010-02-16 17:22

Ability to Cache Url Parameters

Table: CachedUrls
UrlId
Url (without base url, for debugging purposes)
Hash (crc32 of PageUrl)
Prefixes ("|prefixA|prefixB|prefixC:IDA|prefixX|")
ParsedVars (serialized vars)
CreatedOn (date, when parsed)
ExpiresOn (-1 or second count till expires)
-----------

When serial is incremented, then we delete corresponding records from CachedUrls table (by Prefixes column) using prefix and id given to incrementCacheSerialMethod
User avatar (0001485)
alex (manager)
2010-02-24 11:26

Fix committed to 5.1.x branch. Commit Message:

Fixes 0000107: Implement "MemCached" functionality
User avatar (0001486)
alex (manager)
2010-02-24 11:28

Reminder sent to: Dmitry

Testing plan:

1. Following new category fields work and can be controlled via site configs: PageCache,OverridePageCacheKey,PageCacheKey,PageExpiration.

2. Memory Cache interface in system tools section.
3. Memcached Server can be defined via "MemcacheServers" configuration variable (configuration -> website -> advanced) or via config.php file (same variable name).
4. Mod-rewrite url parse result is cached in CachedUrls table and is properly used and reset (based on parsed variables OR page expiration defined in Category.PageExpiration field).
5. Upgrade from non-memcache installation to memcache installation, upgrade from memcache installation to memcache installation.
6. Category permission cache is reset (with progress bar OR not), when installation of separate module is made.
7. Database queries in debugger contain prefix_special information below them.
8. Database queries that will be cached are marked with "Name (cached)" mark in debugger.
9. Category corresponding to current page (special is "-virtual") is loaded using simplified sql (without calculated and custom fields and without left joins).

10. List of affected methods:
in-auction/units/helpers/ebay_helper.php - CheckItemsLimits, CheckCallLimits, ClearConfigCache
in-auction/units/sections/ebay_eh.php - GetRequestInterval, OnGetSellerList, OnGetSellerTransactions, resetAgents, SetCallCounters, SetNewToken, ClearConfigCache, OnNewTokenAccept, OnAuthorizeForToken
in-auction/units/sections/ebay_tp.php - PrintCallsArray
in-commerce/units/currencies/currency_rates.php - GetRatesData, GetRate
in-commerce/units/products/products_item.php - getPrimaryPricing
in-commerce/units/shipping_quote_engines/shipping_quote_collector.php - GetShippingQuotes
in-link/units/link_validation/link_validation_tp.php - CategoryName
core/install/install_toolkit.php - deleteCache
core/kernel/application.php - GetDefaultLanguageId, GetDefaultThemeId, GetPrimaryCurrency, getCategoryCache, getFilename, isCachingType, incrementCacheSerial, setCache, setDBCache, getCache, getDBCache, deleteCache, deleteDBCache, registerModuleConstants, Done, HREF, BuildEnv, LoadCache, LoadStructureTemplateMapping, UpdateCache, getTreeIndex
core/kernel/db/cat_event_handler.php - prepareItemStatuses, CalculateHotLimit, getAdvancedSearchCondition
core/kernel/db/cat_tag_processor.php - CategoryName, HasAdditionalImages, LastUpdated
core/kernel/db/db_connection.php - debugQuery
core/kernel/db/db_event_handler.php - StoreSelectedIDs, SaveLoggedChanges
core/kernel/db/db_tag_processor.php - PrintList2, AddCurrencySymbol
core/kernel/db/dbitem.php - Load, setTempID, LogChanges
core/kernel/db/dblist.php - Query
core/kernel/kbase.php - PrepareFieldOptions
core/kernel/nparser/nparser.php - NParser, Run, RunMainPage, generatePageCacheKey, ParseBlock, DecorateBlock, IncludeTemplate, getCache, setCache, FormCacheKey, PushPointer, CacheStart, CacheEnd
core/kernel/nparser/ntags.php - _Tag_Cache::Open, _Tag_Cache::Close
core/kernel/processors/tag_processor.php - FormCacheKey, ProcessParsedTag
core/kernel/utility/formatters/multilang_formatter.php - LangFieldName
core/kernel/utility/temp_handler.php - UpdateChangeLogForeignKeys
core/kernel/utility/unit_config_reader.php - CacheParsedData, RestoreParsedData, ResetParsedData, includeConfigFiles
core/units/admin/admin_events_handler.php - CheckPermission, OnResetModRwCache, OnResetSections, OnResetConfigsCache, OnResetMemcache, OnMemoryCacheGet, OnMemoryCacheSet
core/units/admin/admin_tag_processor.php - CheckPermCache, MemoryCacheEnabled
core/units/categories/cache_updater.php - kPermCacheUpdater::clearData, kPermCacheUpdater::SaveData, kPermCacheUpdater::UpdateCachedPath
core/units/categories/categories_event_handler.php - prepareObject, _beforeItemChange, _resetMenuCache, LoadItem
core/units/categories/categories_tag_processor.php - getCategorySymLink, LastUpdated, SpellingSuggestions, CategoryName
core/units/custom_data/custom_data_event_handler.php - scanCustomFields, createCustomFields
core/units/forms/forms_eh.php - OnSave, OnMassDelete, _deleteSectionCache
core/units/helpers/category_helper.php - getCategoryParentPath, _getStructureTree, getTemplateMapping, getStructureTreeAsOptions
core/units/helpers/count_helper.php - resetExpiredCounters, CategoryCount, GetPermissionClause
core/units/helpers/language_import_helper.php - performImport, _performUpgrade
core/units/helpers/menu_helper.php - _prepareMenu
core/units/helpers/mod_rewrite_helper.php - processRewriteURL, _getCachedUrl, _setCachedUrl, _buildMainUrl, GetItemTemplate, getItemTemplateCustomField
core/units/helpers/permissions_helper.php - CheckUserPermission
core/units/helpers/sections_helper.php - BuildTree
core/units/helpers/skin_helper.php - compile, _getStyleInfo
core/units/helpers/themes_helper.php - refreshThemes
core/units/languages/languages_event_handler.php - CheckPermission
core/units/languages/languages_item.php - Load
core/units/permissions/permissions_tag_processor.php - CategoryPath
core/units/statistics/statistics_tag_processor.php - CountPending
core/units/themes/theme_item.php - Load
core/units/themes/themes_eh.php - CheckPermission
core/units/users/users_event_handler.php - LoadItem
User avatar (0001488)
alex (manager)
2010-02-24 12:04

Fix committed to 1.1.x branch. Commit Message:

Fixes 0000107: Implement "MemCached" functionality
User avatar (0001489)
alex (manager)
2010-02-24 12:06

Also all used phrases should be translated (category editing page, service section).
User avatar (0001508)
alex (manager)
2010-03-02 14:20

Patch "memcache_notification_addon.patch" doesn't show "incrementing serial ..." messages in case if memory caching is disabled.
User avatar (0001520)
alex (manager)
2010-03-07 13:32

Patch "memcache_theme_rebuild_fix.patch" fixes problem, that "#in-link/section#" design wasn't recognized. This happened, because I've installed In-Portal without In-Link first, and then I've installed In-Link separately. Then I've triggered theme file refresh manually (because installed doesn't do that) and it didn't give desired effect, since only general "theme" serial was reset, but current theme information was cached based on current theme's ID.
User avatar (0001521)
Dmitry (manager)
2010-03-07 14:47

Reminder sent to: alex

Thanks Alex.

I guess you acme across this issue accidentally?
User avatar (0001522)
alex (manager)
2010-03-08 01:22

Sort of. I found this when I was comparing files before merging to CVS.
User avatar (0001719)
alex (manager)
2010-03-21 16:31

Patch "memcache_install_fix.patch" fixes case, when "CacheHandler" is set to "Memcache" in "config.php" file and we are using "Re-install" option like this:

1. install in-portal without modules
2. re-install in-portal with in-link
3. results fatal error on front-end, when trying to get ID of "LINK.VIEW" permission.
User avatar (0001741)
alex (manager)
2010-03-24 08:35

Patch "memcache_install_fix_v2.patch" is improved version of "memcache_install_fix.patch" which also processes the case, when "Re-install" option is used.

Major change is that cache is reset before install is made and not after that.
User avatar (0001742)
alex (manager)
2010-03-24 08:40

Patch "memcache_custom_field_caching_on_install.patch" fixes problem, that custom fields were still cached during "Re-install" step, when "CacheHandler" was specified in "config.php".
User avatar (0001880)
alex (manager)
2010-04-13 12:41

Patch "cached_permissions_not_updated_after_group_edit.patch" (commited) solves problem, that tree sections are invisible even, when their "view" permission is set.
User avatar (0001938)
Dmitry (manager)
2010-04-25 18:23
edited on: 2010-04-25 18:26

1. Question is whether Products in Category and Products in Category Added today should be cachable. Please review the screenshot (QuestionAboutCachingNumberOfProductsInCategory.jpg)

2. Also list how I can minimize Product Details (or other item Detail) page to 7-10 SQLs per page you had before.

User avatar (0001951)
alex (manager)
2010-04-26 04:59

1 - they could, why not.
2 - maybe I enable full page cache, try that.
User avatar (0001955)
Dmitry (manager)
2010-04-26 06:38

Thanks for your reply!

1. Can you please look into that?

2. Tried and still no luck - lets look at this together.
User avatar (0002301)
Dmitry (manager)
2010-05-23 19:48

Reminder sent to: alex

Hi Alex,

Reviewed some more and have some additional notes:


1. Would you please change the order of Caching Settings configuration variables (Admin->Configuration->Website Advanced:

- CacheHandler
- MemcacheServers

2. Add a hit label for "MemcacheServers" configuration naming it "la_hint_MemcacheServers".


NOTE: No tests needed for this - please commit right away.


Thanks.
User avatar (0002313)
alex (manager)
2010-05-24 15:03

Patch "memcache_addon.patch" (already commited) and fixes 0000107:0002301.
User avatar (0002314)
alex (manager)
2010-05-24 15:05

Fix committed to 5.1.x branch. Commit Message:

Fixes 0000107: Implement "MemCached" functionality
User avatar (0002521)
alex (manager)
2010-07-22 15:06

Closing, since 5.1.0 release has been released.

- Related Changesets
In-Portal CMS: 5.1.x r13614
Timestamp: 2010-05-24 15:05:48
Author: alex
Details ] Diff ]
Fixes 0000107: Implement "MemCached" functionality
mod - /in-portal/branches/5.1.x/core/install/english.lang Diff ] File ]
mod - /in-portal/branches/5.1.x/core/install/install_data.sql Diff ] File ]
mod - /in-portal/branches/5.1.x/core/install/upgrades.sql Diff ] File ]
In-Portal CMS: 5.1.x r13561
Timestamp: 2010-05-12 07:31:09
Author: alex
Details ] Diff ]
1. Bug 0000107: Implement "MemCached" functionality
2. Fixes issue, that parent category path cache was overlapping between MenuHelper and CategoryHelper resulting unexpected data to be restored from cache.
mod - /in-portal/branches/5.1.x/core/units/helpers/category_helper.php Diff ] File ]
In-Portal CMS: 5.1.x r13382
Timestamp: 2010-04-13 12:45:19
Author: alex
Details ] Diff ]
1. Bug 0000107: Implement "MemCached" functionality.
2. Solves problem, that tree sections are invisible even, when their "view" permission is set.
mod - /in-portal/branches/5.1.x/core/kernel/db/db_event_handler.php Diff ] File ]
In-Portal CMS: 5.1.x r13313
Timestamp: 2010-03-24 08:41:24
Author: alex
Details ] Diff ]
1. Bug 0000107: Implement "MemCached" functionality
2. Fixes problem, that custom fields were still cached during "Re-install" step, when "CacheHandler" was specified in "config.php".
mod - /in-portal/branches/5.1.x/core/units/custom_data/custom_data_event_handler.php Diff ] File ]
In-Portal CMS: 5.1.x r13312
Timestamp: 2010-03-24 08:36:19
Author: alex
Details ] Diff ]
1. Bug 0000107: Implement "MemCached" functionality
2. Now cache is reset before install instead of after that.
mod - /in-portal/branches/5.1.x/core/install/install_toolkit.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/install.php Diff ] File ]
In-Portal CMS: 5.1.x r13275
Timestamp: 2010-03-21 16:32:43
Author: alex
Details ] Diff ]
1. Bug 0000107: Implement "MemCached" functionality
2. Complete reset of all Memcache cache on re-install eliminates cache left over side effects when caching handler is set directly in "config.php" and not in db as usual.
mod - /in-portal/branches/5.1.x/core/install/install_toolkit.php Diff ] File ]
In-Portal CMS: 5.1.x r13182
Timestamp: 2010-03-07 13:33:11
Author: alex
Details ] Diff ]
1. Bug 0000107: Implement "MemCached" functionality
2. Fixes "#in-link/section#" design being not recognized properly because of cached theme information wasn't reset on that theme file rebuild.
mod - /in-portal/branches/5.1.x/core/units/helpers/themes_helper.php Diff ] File ]
In-Portal CMS: 5.1.x r13173
Timestamp: 2010-03-02 14:21:12
Author: alex
Details ] Diff ]
1. Bug 0000107: Implement "MemCached" functionality.
2. Doesn't show "incrementing serial ..." messages when cache is off.
mod - /in-portal/branches/5.1.x/core/kernel/application.php Diff ] File ]
Themes :: Advanced: 1.1.x r13169
Timestamp: 2010-02-24 12:04:32
Author: alex
Details ] Diff ]
Fixes 0000107: Implement "MemCached" functionality
mod - /themes/advanced/branches/1.1.x/in-commerce/designs/section.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-commerce/elements/currency_picker.elm.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-commerce/elements/side_boxes/categories.elm.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-link/designs/section.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-news/designs/section.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/platform/elements/header.elm.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/platform/elements/html_head.elm.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/platform/elements/menu_subsections.xml.tpl Diff ] File ]
In-Portal CMS: 5.1.x r13168
Timestamp: 2010-02-24 11:26:57
Author: alex
Details ] Diff ]
Fixes 0000107: Implement "MemCached" functionality
mod - /in-portal/branches/5.1.x/admin/system_presets/simple/categories_c.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/admin_templates/categories/categories_edit.tpl Diff ] File ]
mod - /in-portal/branches/5.1.x/core/admin_templates/tools/system_tools.tpl Diff ] File ]
mod - /in-portal/branches/5.1.x/core/install/install_data.sql Diff ] File ]
mod - /in-portal/branches/5.1.x/core/install/install_schema.sql Diff ] File ]
mod - /in-portal/branches/5.1.x/core/install/install_toolkit.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/install/remove_schema.sql Diff ] File ]
mod - /in-portal/branches/5.1.x/core/install/upgrades.sql Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/application.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/db/cat_event_handler.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/db/cat_tag_processor.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/db/db_connection.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/db/db_event_handler.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/db/db_tag_processor.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/db/dbitem.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/db/dblist.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/kbase.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/nparser/nparser.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/nparser/ntags.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/processors/tag_processor.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/startup.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/utility/cache.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/utility/debugger.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/utility/formatters/multilang_formatter.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/utility/temp_handler.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/utility/unit_config_reader.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/admin/admin_events_handler.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/admin/admin_tag_processor.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/categories/cache_updater.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/categories/categories_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/categories/categories_event_handler.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/categories/categories_tag_processor.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/custom_data/custom_data_event_handler.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/forms/forms_eh.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/helpers/category_helper.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/helpers/count_helper.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/helpers/language_import_helper.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/helpers/menu_helper.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/helpers/mod_rewrite_helper.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/helpers/permissions_helper.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/helpers/sections_helper.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/helpers/skin_helper.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/helpers/themes_helper.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/languages/languages_event_handler.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/languages/languages_item.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/permissions/permissions_tag_processor.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/statistics/statistics_tag_processor.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/structure/structure_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/themes/theme_item.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/themes/themes_eh.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/users/users_event_handler.php Diff ] File ]
mod - /in-portal/branches/5.1.x/tools/show_cache.php Diff ] File ]
Modules :: In-Link: 5.1.x r13165
Timestamp: 2010-02-24 08:14:52
Author: alex
Details ] Diff ]
Bug 0000107: Implement "MemCached" functionality
mod - /modules/in-link/branches/5.1.x/units/link_validation/link_validation_tp.php Diff ] File ]
Modules :: In-Commerce: 5.1.x r13164
Timestamp: 2010-02-24 08:13:28
Author: alex
Details ] Diff ]
Bug 0000107: Implement "MemCached" functionality
mod - /w/in-commerce/branches/5.1.x/units/currencies/currency_rates.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/products/products_item.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/shipping_quote_engines/shipping_quote_collector.php Diff ] File ]

- Issue History
Date Modified Username Field Change
2012-08-11 12:20 Dmitry Relationship added related to 0001326
2012-06-28 05:00 alex Relationship added related to 0001332
2012-02-06 04:09 alex Relationship added related to 0001201
2011-09-19 15:59 alex Relationship added related to 0001123
2011-03-31 11:06 Dmitry Relationship added related to 0001028
2011-01-04 05:43 alex Relationship added parent of 0000958
2010-10-11 12:46 alex Relationship added parent of 0000885
2010-10-11 11:12 alex Relationship added related to 0000877
2010-10-11 11:12 alex Relationship added related to 0000882
2010-10-10 10:19 alex Relationship added parent of 0000884
2010-07-27 14:03 alex Relationship added related to 0000812
2010-07-22 15:06 alex Note Added: 0002521
2010-07-22 15:06 alex Status resolved => closed
2010-05-24 15:05 alex Changeset attached 5.1.x r13614
2010-05-24 15:05 alex Note Added: 0002314
2010-05-24 15:05 alex Status needs work => resolved
2010-05-24 15:05 alex Fixed in Version => 5.1.0-B1
2010-05-24 15:05 alex Resolution reopened => fixed
2010-05-24 15:03 alex Note Added: 0002313
2010-05-24 14:50 alex File Added: memcache_addon.patch
2010-05-23 19:48 Dmitry Note Added: 0002301
2010-05-12 07:31 alex Changeset attached 5.1.x r13561
2010-05-12 07:28 alex File Added: overlaped_cache_names_fix.patch
2010-04-26 06:38 Dmitry Note Added: 0001955
2010-04-26 06:38 Dmitry Assigned To Dmitry => alex
2010-04-26 06:38 Dmitry Status needs feedback => needs work
2010-04-26 04:59 alex Assigned To alex => Dmitry
2010-04-26 04:59 alex Note Added: 0001951
2010-04-25 18:26 Dmitry Note Edited: 0001938 View Revisions
2010-04-25 18:26 Dmitry Note Edited: 0001938 View Revisions
2010-04-25 18:24 Dmitry Note Edited: 0001938 View Revisions
2010-04-25 18:24 Dmitry File Added: QuestionAboutCachingNumberOfProductsInCategory.jpg
2010-04-25 18:23 Dmitry Note Added: 0001938
2010-04-25 18:23 Dmitry Status resolved => needs feedback
2010-04-25 18:23 Dmitry Resolution fixed => reopened
2010-04-13 12:45 alex Changeset attached 5.1.x r13382
2010-04-13 12:41 alex Note Added: 0001880
2010-04-13 12:40 alex File Added: cached_permissions_not_updated_after_group_edit.patch
2010-03-24 08:41 alex Changeset attached 5.1.x r13313
2010-03-24 08:40 alex Note Added: 0001742
2010-03-24 08:39 alex File Added: memcache_custom_field_caching_on_install.patch
2010-03-24 08:36 alex Changeset attached 5.1.x r13312
2010-03-24 08:35 alex Note Added: 0001741
2010-03-24 08:33 alex File Added: memcache_install_fix_v2.patch
2010-03-21 16:32 alex Changeset attached 5.1.x r13275
2010-03-21 16:31 alex Note Added: 0001719
2010-03-21 16:29 alex File Added: memcache_install_fix.patch
2010-03-08 01:22 alex Note Added: 0001522
2010-03-07 14:47 Dmitry Note Added: 0001521
2010-03-07 13:33 alex Changeset attached 5.1.x r13182
2010-03-07 13:32 alex Note Added: 0001520
2010-03-07 13:29 alex File Added: memcache_theme_rebuild_fix.patch
2010-03-02 14:21 alex Changeset attached 5.1.x r13173
2010-03-02 14:20 alex Note Added: 0001508
2010-03-02 14:18 alex File Added: memcache_notification_addon.patch
2010-03-01 14:20 Dmitry Relationship added related to 0000588
2010-02-27 05:00 alex Developer => alex
2010-02-24 12:06 alex Note Added: 0001489
2010-02-24 12:04 alex Changeset attached 1.1.x r13169
2010-02-24 12:04 alex Note Added: 0001488
2010-02-24 12:04 alex Fixed in Version 5.1.0-B1 =>
2010-02-24 12:04 alex File Added: memcache_themes.patch
2010-02-24 11:56 alex Time Spent Added 50 hours
2010-02-24 11:55 alex Relationship added related to 0000049
2010-02-24 11:28 alex Note Added: 0001486
2010-02-24 11:26 alex Note Added: 0001485
2010-02-24 11:26 alex Status needs work => resolved
2010-02-24 11:26 alex Fixed in Version => 5.1.0-B1
2010-02-24 11:26 alex Resolution open => fixed
2010-02-24 11:26 alex Changeset attached 5.1.x r13168
2010-02-24 10:46 alex File Added: memcache_core.patch
2010-02-24 08:14 alex Changeset attached 5.1.x r13165
2010-02-24 08:13 alex Changeset attached 5.1.x r13164
2010-02-24 07:51 alex Changeset attached 5.1.x r13163
2010-02-24 07:49 alex File Added: memcache_modules.patch
2010-02-24 07:29 alex Relationship added related to 0000580
2010-02-16 17:22 Dmitry Note Added: 0001480
2010-02-15 16:22 Dmitry Relationship added related to 0000579
2010-02-15 16:18 Dmitry Note Added: 0001479
2010-02-13 07:50 alex File Added: Caching_process.vsd
2010-02-11 14:35 Dmitry Status needs feedback => needs work
2010-02-11 14:34 Dmitry Relationship added child of 0000296
2010-02-11 14:34 alex Relationship added parent of 0000357
2010-01-12 12:12 alex Target Version Icebox => 5.1.0
2010-01-12 11:34 alex Target Version 5.1.0 => Icebox
2009-10-03 07:47 administrator Priority @50@ => normal
2009-09-15 01:18 Dmitry Priority critical => @50@
2009-09-15 01:11 Dmitry Priority normal => critical
2009-09-15 01:11 Dmitry Note Added: 0000441
2009-09-15 01:11 Dmitry Assigned To Dmitry => alex
2009-09-15 01:11 Dmitry Status reviewed and tested => needs feedback
2009-09-14 09:45 Dmitry Note Added: 0000434
2009-09-14 09:45 Dmitry Target Version 5.2.x => 5.1.0
2009-09-13 05:29 alex Note Added: 0000423
2009-07-07 10:03 Dmitry Additional Information Updated View Revisions
2009-07-07 10:02 Dmitry Description Updated View Revisions
2009-07-07 09:57 Dmitry Description Updated View Revisions
2009-07-07 09:53 Dmitry New Issue
2009-07-07 09:53 Dmitry Status active => reviewed and tested
2009-07-07 09:53 Dmitry Assigned To => Dmitry



Web Development by Intechnic
In-Portal Open Source CMS
In-Portal Open Source CMS
Copyright © 2000 - 2009 MantisBT Group

Powered by Mantis Bugtracker