]> source.dussan.org Git - sonarqube.git/commit
SONAR-983 index the project from a dedicated post-job in order to optimize SQL requests
authorsimonbrandhof <simon.brandhof@gmail.com>
Fri, 30 Dec 2011 17:55:14 +0000 (18:55 +0100)
committersimonbrandhof <simon.brandhof@gmail.com>
Fri, 30 Dec 2011 17:55:14 +0000 (18:55 +0100)
commit981885cad7f17858718c7e905868befc568e9f8f
tree67cda52bcb87a8776ffc539dfd50489d064723eb
parentff9d267c623de885c6a02f6ed4c6831084009a58
SONAR-983 index the project from a dedicated post-job in order to optimize SQL requests
30 files changed:
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/batch/IndexProjectPostJob.java [new file with mode: 0644]
plugins/sonar-core-plugin/src/test/java/org/sonar/plugins/core/batch/IndexProjectPostJobTest.java [new file with mode: 0644]
sonar-batch/src/main/java/org/sonar/batch/bootstrap/BootstrapModule.java
sonar-batch/src/main/java/org/sonar/batch/index/DefaultResourcePersister.java
sonar-batch/src/test/java/org/sonar/batch/index/DefaultResourcePersisterTest.java
sonar-batch/src/test/java/org/sonar/batch/phases/UpdateStatusJobTest.java
sonar-core/src/main/java/org/sonar/core/resource/ResourceIndexer.java [deleted file]
sonar-core/src/main/java/org/sonar/core/resource/ResourceIndexerDao.java
sonar-core/src/main/java/org/sonar/core/resource/ResourceIndexerFilter.java
sonar-core/src/main/java/org/sonar/core/resource/ResourceIndexerMapper.java
sonar-core/src/main/resources/org/sonar/core/resource/ResourceIndexerMapper.xml
sonar-core/src/test/java/org/sonar/core/resource/ResourceIndexerDaoTest.java
sonar-core/src/test/java/org/sonar/core/resource/ResourceIndexerTest.java [deleted file]
sonar-core/src/test/resources/org/sonar/core/resource/ResourceIndexerDaoTest/shouldIndexAllResources-result.xml [deleted file]
sonar-core/src/test/resources/org/sonar/core/resource/ResourceIndexerDaoTest/shouldIndexAllResources.xml [deleted file]
sonar-core/src/test/resources/org/sonar/core/resource/ResourceIndexerDaoTest/shouldIndexMultiModulesProject-result.xml
sonar-core/src/test/resources/org/sonar/core/resource/ResourceIndexerDaoTest/shouldIndexMultiModulesProject.xml
sonar-core/src/test/resources/org/sonar/core/resource/ResourceIndexerDaoTest/shouldIndexProjects-result.xml [new file with mode: 0644]
sonar-core/src/test/resources/org/sonar/core/resource/ResourceIndexerDaoTest/shouldIndexProjects.xml [new file with mode: 0644]
sonar-core/src/test/resources/org/sonar/core/resource/ResourceIndexerDaoTest/shouldIndexResource-result.xml [new file with mode: 0644]
sonar-core/src/test/resources/org/sonar/core/resource/ResourceIndexerDaoTest/shouldIndexResource.xml [new file with mode: 0644]
sonar-core/src/test/resources/org/sonar/core/resource/ResourceIndexerDaoTest/shouldIndexSingleResource-result.xml [deleted file]
sonar-core/src/test/resources/org/sonar/core/resource/ResourceIndexerDaoTest/shouldIndexSingleResource.xml [deleted file]
sonar-core/src/test/resources/org/sonar/core/resource/ResourceIndexerDaoTest/shouldReindexProjectAfterRenaming-result.xml
sonar-core/src/test/resources/org/sonar/core/resource/ResourceIndexerDaoTest/shouldReindexProjectAfterRenaming.xml
sonar-server/src/main/java/org/sonar/server/platform/Platform.java
sonar-server/src/main/java/org/sonar/server/ui/JRubyFacade.java
sonar-server/src/main/webapp/WEB-INF/db/migrate/241_index_projects.rb [new file with mode: 0644]
sonar-server/src/main/webapp/WEB-INF/db/migrate/241_index_resources.rb [deleted file]