« Sorry for not blogging for a couple of days... | Main| I'll take a Frappr, no milk, no coffee and sugar free. »

My buddy Paul B in the UK sent me a tip to share today...

Category



If you're still on Sametime 3.1, you may come across an issue with the meeting center purge agent where it crashes the server if you have a lot of meeting documents, 3000+. To stop it happening perform the following steps:  

Find the following lines by editing the PurgeMeetings agent.  FYI, the references to Section One and Section Two do not exist in the code.  They are there so you can see the two changes that need to be made.  Search for "// What about recycling" to find the first section and  "if (unid" to find the second section.   Add the bold lines in the following areas.  The non bold lines are already in the code.

   

Section One
//
// What about recycling the doc object?...
//
Document doc2 = doc;
doc = view.getNextDocument(doc);
doc2.recycle();
... 
... 
... 

Section Two
if (unid.length() > 0)
{
    Document recycleDoc = doc;
    doc = safeGetDocumentByUNID(unid);
    recycleDoc.recycle();

    if (doc != null)
    {
....
}

After adding these lines, the server should be able to handle many more meeting documents.  

Post A Comment

:-D:-o:-p:-x:-(:-):-\:angry::cool::cry::emb::grin::huh::laugh::rolleyes:;-)