소스 검색

Optimization in the setup: 10 queries to insert the 1500 action grant records

git-svn-id: http://svn.code.sf.net/p/itop/code/trunk@1153 a333f486-631f-4898-b8df-5754b55c2be0
romainq 14 년 전
부모
커밋
4b64ee63fc
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      modules/itop-profiles-itil/module.itop-profiles-itil.php

+ 6 - 0
modules/itop-profiles-itil/module.itop-profiles-itil.php

@@ -148,11 +148,17 @@ class CreateITILProfilesInstaller extends ModuleInstallerAPI
 	
 		// Grant read rights for everything
 		//
+		// Warning: BulkInsert is working because we will load one single class
+		//          having one single table !
+		//          the benefit is: 10 queries (1 per profile) instead of 1500
+		//          which divides the overall user rights setup process by 2
+		DBObject::BulkInsertStart();
 		foreach (MetaModel::GetClasses('bizmodel') as $sClass)
 		{
 			self::DoCreateActionGrant($iProfile, UR_ACTION_READ, $sClass);
 			self::DoCreateActionGrant($iProfile, UR_ACTION_BULK_READ, $sClass);
 		}
+		DBObject::BulkInsertFlush();
 	
 		// Grant write for given modules
 		// Start by compiling the information, because some modules may overlap