Re: Logging to memory mapped files

2014-01-16 Thread Thorsten Schöning
Guten Tag Rhys Ulerich, am Mittwoch, 15. Januar 2014 um 16:11 schrieben Sie: Yeah. I was thinking that one would toss the file onto something RAMish. But you're right that it won't have the performance profile you want. Why would writing to a RAM-disk without buffering suffer performance?

Re: Logging to memory mapped files

2014-01-15 Thread Rhys Ulerich
So is there any possibility to have an log4cxx appender logging to a memory mapped file? (primary target is Linux) Does anybody have had experience with implementing that? How would you do it? No experience, no. A rough hack would be to call WriterAppender::setWriter on a ConsoleAppender

RE: Logging to memory mapped files

2014-01-15 Thread RUOFF, LARS (LARS)
2014 15:55 To: Log4CXX User Subject: Re: Logging to memory mapped files So is there any possibility to have an log4cxx appender logging to a memory mapped file? (primary target is Linux) Does anybody have had experience with implementing that? How would you do it? No experience, no. A rough

Re: Logging to memory mapped files

2014-01-15 Thread Rhys Ulerich
Curiosity, turning off the buffering on FileAppender isn't close enough to what you want? Well, maybe. But won't turning off buffering severely decrease performance because of higher i/o activity? Yeah. I was thinking that one would toss the file onto something RAMish. But you're right