Subversion Repositories SmartDukaan

Rev

Rev 3126 | Rev 3185 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3126 Rev 3169
Line 141... Line 141...
141
            logger.error("Unexpected exception", e);
141
            logger.error("Unexpected exception", e);
142
        }
142
        }
143
        
143
        
144
        bestDealSnippets = getSnippets(bestDealCatalogIds);
144
        bestDealSnippets = getSnippets(bestDealCatalogIds);
145
        bestSellerSnippets = getSnippets(bestSellerCatalogIds.subList(0, bestSellerCount));
145
        bestSellerSnippets = getSnippets(bestSellerCatalogIds.subList(0, bestSellerCount));
146
        latestArrivalSnippets = getSnippets(latestArrivalCatalogIds).subList(0, latestArrivalCount);
146
        latestArrivalSnippets = getSnippets(latestArrivalCatalogIds.subList(0, latestArrivalCount));
147
        homeSnippetCache.put(BEST_DEALS_CACHE_KEY, bestDealSnippets);
147
        homeSnippetCache.put(BEST_DEALS_CACHE_KEY, bestDealSnippets);
148
        homeSnippetCache.put(BEST_SELLERS_CACHE_KEY, bestSellerSnippets);
148
        homeSnippetCache.put(BEST_SELLERS_CACHE_KEY, bestSellerSnippets);
149
        homeSnippetCache.put(LATEST_ARRIVALS_CACHE_KEY, latestArrivalSnippets);
149
        homeSnippetCache.put(LATEST_ARRIVALS_CACHE_KEY, latestArrivalSnippets);
150
    }
150
    }
151
	
151