Buongiorno a tutti. ho un problema su un Domino server 6.5.1 Il processo dllhost.exe continua a "succhiarsi" memoria senza mai rilasciarla. Questo dopo che ho fatto una pagina ASP che si connette ad un database .ntf di quel server. la modalità di accesso che ho usato è la seguente: <% Dim s Dim db Dim v Dim doc Set s = CreateObject("Lotus.NotesSession") Call s.Initialize Set db = s.GetDatabase("", "intranet.nsf") Set v = db.GetView("NewsIntranet") Set doc = v.GetFirstDocument while Not (doc Is Nothing) Set titolo = doc.GetFirstItem("Subject") Set doc = v.GetNextDocument(doc) Wend Set s = nothing Set doc = nothing Set db = nothing Set v = nothing %> ho notato che ad incrementare la memoria utilizzata dalla dllhost.exe è il ciclo while/wend esiste una modalità alternativa? esiste un comando che rilascia la memoria occupata da quel task? Grazie a tutti
|