Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r78750 - sandbox/icl/libs/xplore/br1/sqlbrowser
From: afojgo_at_[hidden]
Date: 2012-05-29 12:27:22


Author: jofaber
Date: 2012-05-29 12:27:21 EDT (Tue, 29 May 2012)
New Revision: 78750
URL: http://svn.boost.org/trac/boost/changeset/78750

Log:
Optimizing Db via indixes.
Text files modified:
   sandbox/icl/libs/xplore/br1/sqlbrowser/TypeExtensibleDag.sql | 22 +++++++++++++++-------
   1 files changed, 15 insertions(+), 7 deletions(-)

Modified: sandbox/icl/libs/xplore/br1/sqlbrowser/TypeExtensibleDag.sql
==============================================================================
--- sandbox/icl/libs/xplore/br1/sqlbrowser/TypeExtensibleDag.sql (original)
+++ sandbox/icl/libs/xplore/br1/sqlbrowser/TypeExtensibleDag.sql 2012-05-29 12:27:21 EDT (Tue, 29 May 2012)
@@ -487,7 +487,12 @@
 -- -----------------------------------------------------------------------------
 create index IdxSourceVertex on Edge (refSourceVertex)
 create index IdxTargetVertex on Edge (refTargetVertex)
-create index IdxEdgeType on Edge (refEdgeType)
+--SLOWER: create index IdxEdgeType on Edge (refEdgeType)
+--create index IdxVarCharValue on VarCharObject (value) : Bringt kaum was.
+drop index IdxVarCharValue
+drop index IdxVarChar_RefAndValue
+
+create index IdxVarChar_Obj_Att_Value on VarCharObject (refObject, refAttribute, value)
 
 
 
@@ -497,7 +502,8 @@
 -- create view Track as
 select
   ConstTrackType.Name as TrackType, Vertex.key as TrackId, TrackName.value as Name
-, Duration.value as Dur, Genre.value as Genre, BPM.value as BPM, Label.value as Label, Comment.value as Comment
+, Duration.value as Dur, Genre.value as Genre, BPM.value as BPM, Label.value as Label, Comment.value as Comment
+, Playcount.value as Plyd, Rating.value as Rtd
 , ConstAlbumType.Name as AlbType, MotherAlbum.refSourceVertex as AlbId, AlbumName.value as Album, AlbumYear.value as AlbYr
 , ConstTitleType.Name as TitType, MotherTitle.refSourceVertex as TitId, TitleName.value as Title, TitleYear.value as TitYr
 , ConstArtistType.Name as ArtstType, ComposerOfTitle.refSourceVertex as CompId, ComposerName.value as Composer, ComposerYoBirth.value as Birth
@@ -506,11 +512,13 @@
   inner join VarCharObject as TrackName on TrackName.refObject = Vertex.key
                                            and TrackName.refAttribute = 1
                                            and Vertex.refObjectType = 23 -- 23: Recording (aka. Track)
- left outer join VarCharObject as Duration on Duration.refObject = Vertex.key and Duration.refAttribute = 2
- left outer join VarCharObject as Genre on Genre.refObject = Vertex.key and Genre.refAttribute = 3
- left outer join VarCharObject as Label on Label.refObject = Vertex.key and Label.refAttribute = 4
- left outer join VarCharObject as Comment on Comment.refObject = Vertex.key and Comment.refAttribute = 5
- left outer join IntObject as BPM on BPM.refObject = Vertex.key and BPM.refAttribute = 33
+ left outer join VarCharObject as Duration on Duration.refObject = Vertex.key and Duration.refAttribute = 2
+ left outer join VarCharObject as Genre on Genre.refObject = Vertex.key and Genre.refAttribute = 3
+ left outer join VarCharObject as Label on Label.refObject = Vertex.key and Label.refAttribute = 4
+ left outer join VarCharObject as Comment on Comment.refObject = Vertex.key and Comment.refAttribute = 5
+ left outer join IntObject as BPM on BPM.refObject = Vertex.key and BPM.refAttribute = 33
+ left outer join IntObject as Playcount on Playcount.refObject = Vertex.key and Playcount.refAttribute = 34
+ left outer join IntObject as Rating on Rating.refObject = Vertex.key and Rating.refAttribute = 35
   -- ObjectType(Track)
   left outer join ObjectType as ConstTrackType on 23 = ConstTrackType.key
   -- Album ---------------------------------------------------------------------


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk