General Library Question

Ask a Question related to Adobe Indesign Macintosh, Design and Development.

  1. #1

    Default General Library Question

    We're about to change our workflow using libraries. We'll be putting a lot of information into a library ... and depending on it.
    The question is, how many items can a library hold. Any recommendation is welcome.
    Renee_Tanner@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. Hey all, got a general question
      Well hello all u peeps. Been awhile since i got here, evensince i got fired from my last job. In the last couple of months ive been thinking of...
    2. odbc general question
      Hi everyone I am new to CF. I have been having a problem that I am not sure how to solve I hope that oe of you can help me take care of it. I am...
    3. General DataBinder Question
      I hope some datagrid expert can help me with this -- I have a datagrid which I use to display, sort and filter data from a variety of data tables...
    4. General PHP question
      Hi, I was wondering what the major differences were between ASP and PHP and the advantages/disadvantages to each. Thank you, John
    5. general question
      Using 9i SQL on HR employees table, perform SELECT LAST_NAME FROM EMPLOYEES why do the names sort out alphabetically asc? Is there a default...
  3. #2

    Default Re: General Library Question

    We've tried more than 100 and it still works. You try going beyond that but what's the use? It would become difficult to find what you need.
    Arnold_German@adobeforums.com Guest

  4. #3

    Default Re: General Library Question

    That's what we're trying to determine, though. At what point do we look for a subset within the library ... or just do a separate library.
    Thanks.
    Renee_Tanner@adobeforums.com Guest

  5. #4

    Default Re: General Library Question

    It all depends on how you plan to work with the library. If, for example, you have a script that sorts through the items based on triggers in the text to insert/update content or even to take content from the text and format it according to the template in the library, then the length of the library is kind of irrelevant.

    I just wrote this script to see how large a library could be. Before running the script, I created and kept open a library named "Test" and then I set the script running on my 2Ghz iMac/20.

    myDoc = app.documents.add();
    myTF = myDoc.pages[0].textFrames.add({geometricBounds:[0,0,"1i", "3i"], contents:"This is a test"});
    myLib = app.libraries[0];
    while (true) {
    myCount = myLib.assets.length;
    myName = "Asset " + String(myCount);
    myAsset = myLib.store(myTF);
    myAsset.name = myName;
    if ((myCount + 1) % 100 == 0) {
    if (!confirm("Number of assets in library = " + String(myCount + 1) + ". Continue?")) {
    exit();
    }
    }
    }

    It was rather slower than I expected, but after about six and a half minutes, it reached 700 items. I'm running it again to see how long it takes to get to 800. I suspect that there is no actual limit on the number of items you can have in a library. It's a matter of what your workflow is and whether or not you can manage so many from a user point of view.

    It reached 800 after less than a minute and that's enough for now! If you want to go further, run the script yourself.

    Dave
    Dave_Saunders@adobeforums.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139