In message <[EMAIL PROTECTED]>
        Jon Burgess <[EMAIL PROTECTED]> wrote:

> The recent Mapnik builds try to mmap() the shapefiles while
> rendering[1]. Since the largest shapefile is a few hundred MB this could
> easily cause some issues if the file was mmap'd multiple times in a
> single process. This might be a particular problem if you use a 32-bit
> system in the multi-threaded Apache worker mode.

Um... no. At least not if it does the sensible thing and maps it
for shared read. Then it will only exist once in memory not matter
how many times a process maps it, or indeed how many processes map
it in.

In fact that is probably the ideal way to access a file like that
as you effectively have one disk backed cache of the file that is
shared by all users of it.

Tom

-- 
Tom Hughes ([EMAIL PROTECTED])
http://www.compton.nu/

_______________________________________________
talk mailing list
[email protected]
http://lists.openstreetmap.org/cgi-bin/mailman/listinfo/talk

Reply via email to