English 中文(简体)
Maximum number of memory segments that Notes can support has been exceeded
原标题:

I am using Domino.dll to access a NSF file in C#.NET 2.0

I am using multiple thread to access 4 NSF files at a time, its working fine for small NSF files, but if i try to access large NSF files i get the Out of Memory Exception and Maximum number of memory segments that Notes can support has been exceeded.

This exception usually occurs when i access NotesDocument object from a large NSFVIewFolder in a while loop.

I am releasing the instance of the NotesDocument by using the Marshal.ReleaseComObject(NotesDocument); still it throws the same exception.

My goal is to access multiple NSF files at a time (MAX 4 NSF files at a time) for large NSF files (may be in GB).

问题回答

I am not familiar with the C# interface, but with Java, you need to explicitly call the recycle() method on the notes document before proceeding to the next document. Failure to do this will mean the associated resources with the notes document will not be cleaned up.

Your issue is similar to this problem. What version of Domino are you using to access the database ? You need to effectively destroy the object. I don t think that ReleaseComObject is effectively releasing the memory that the server would also use to provide the data to COM, thus running out of memory.

I suggest you try Java to do this as the memory management is much better supported than COM. This article and this one should help write Java for Domino. This simple example gives you an idea of how to get through a document collection.





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签