summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/gitblit/utils/CommitCache.java
Commit message (Collapse)AuthorAgeFilesLines
* Issue #1076: load commit cache in a background threadTom2016-10-271-50/+67
| | | | | | | | | | * Make the CommitCache fully thread-safe. It was using a ConcurrentHashMap containing lists, but then handed out these lists. It also did multiple operations on that map that as a whole should be atomic. * Use isEmpty() instead of size() == 0. * Run the loading of the commit cache in a background daemon thread
* [findbugs] Fix incorrect key lookup in commit cacheJames Moger2014-04-171-2/+4
|
* Trim trailing whitespace and organize importsJames Moger2013-09-301-34/+34
| | | | Change-Id: I9f91138b20219be6e3c4b28251487df262bff6cc
* Reset dashboard and activity commit cache on branch REWIND or DELETEJames Moger2013-07-161-0/+17
|
* Improve performance of cache fillingJames Moger2013-06-241-3/+3
|
* Implemented commit cache for the dashboards, activity, and project pagesJames Moger2013-06-241-0/+253