My Clearcase dynamic view has to access several vobs. But one of the vob has very large number of directory, so I wandered if I could tune my dynamic view to access only a list of directories of that specific vob - believing this could improve performances of my searches.
How do I do?
Say here are my vobs below, and in the last, the list of dir I want:
vob1
vob2
large_vob
/dir17
/dir31
/dir53
Here is my basic view:
element * CHECKEDOUT
element * /main/LATEST
element -directory * /main/LATEST
Shall I go in some direction like the below?
element /vob1/* CHECKEDOUT
element /vob1/* /main/LATEST
element -directory /vob1/* /main/LATEST
...
element /large_vob/dir17/* CHECKEDOUT
element /large_vob/dir17/* /main/LATEST
element -directory /large_vob/dir17/* /main/LATEST
...
But I got error
Encountered an improper argument
... plus this above looks to me like hard to maintain. Is there any other way, like a context inside of view declaration? --- Ideally I would like to only work with one view.
I am not admin, I would also like avoiding per-user read restriction or anything.
Any help appreciated!
edit
Restraining the number of directories in my view's vob did improved full-vob label search performance.