Re: Russian TDPL is available for orders

2012-04-05 Thread Dmitry Olshansky
On 05.04.2012 2:46, Igor Stepanov wrote: финиш Функциональные программисты убеждены, что такая модель вычислений поощряет неупорядоченное, параллельное выполнение, однако до недавнего времени эти возможности существовали скорее в виде потенциальной энергии, чем достигнутой цели. Так лучше?

unzip parallel, 3x faster than 7zip

2012-04-05 Thread Jay Norwood
I uploaded a parallel unzip here, and the main in the examples folder. Testing on my ssd drive, unzips a 2GB directory structure in 17.5 secs. 7zip took 55 secs on the same file. This restores timestamps on the regular files. There is also a loop which will restore timestams on folders. It

Re: unzip parallel, 3x faster than 7zip

2012-04-05 Thread Jay Norwood
On Thursday, 5 April 2012 at 14:04:57 UTC, Jay Norwood wrote: I uploaded a parallel unzip here, and the main in the examples folder. So, below is a demo of how to use the example app in windows, where I unzipped a 2GB directory structure from a 1GB zip file, tzip.zip. 02/18/2012 03:23 PM

Re: Oracle Database - ocilib

2012-04-05 Thread dnewbie
On Thursday, 5 April 2012 at 06:15:59 UTC, Walter Bright wrote: On 4/4/2012 9:47 AM, dnewbie wrote: On Tuesday, 3 April 2012 at 04:01:07 UTC, dnewbie wrote: It also works on Linux (I've just tested it on Debian Squeeze with Oracle Express) Rock'n'roll! Hi. I'd like to submit these bindings t

Re: unzip parallel, 3x faster than 7zip

2012-04-05 Thread Jay Norwood
On Thursday, 5 April 2012 at 15:07:47 UTC, Jay Norwood wrote: so, a few comments about std.zip... I attempted to use it and found that its way of unzipping is a memory hog, keeping the full original and all the unzipped data in memory. It quickly ran out of memory on my test case.

Re: unzip parallel, 3x faster than 7zip

2012-04-05 Thread dennis luehring
Am 05.04.2012 16:04, schrieb Jay Norwood: I uploaded a parallel unzip here, and the main in the examples folder. Testing on my ssd drive, unzips a 2GB directory structure in 17.5 secs. 7zip took 55 secs on the same file. it makes no sense to benchmark different algorithm zip<->7zip compare o

Re: unzip parallel, 3x faster than 7zip

2012-04-05 Thread Timon Gehr
On 04/05/2012 06:37 PM, dennis luehring wrote: Am 05.04.2012 16:04, schrieb Jay Norwood: I uploaded a parallel unzip here, and the main in the examples folder. Testing on my ssd drive, unzips a 2GB directory structure in 17.5 secs. 7zip took 55 secs on the same file. it makes no sense to bench

Re: Oracle Database - ocilib

2012-04-05 Thread Walter Bright
On 4/5/2012 8:08 AM, dnewbie wrote: Description (from sourceforge.net project page) OCILIB is an open source and cross platform Oracle Driver that delivers efficient access to Oracle databases. It offers a full featured, easy and productive API. Written in ISO C on top of OCI, OCILIB runs on all

Re: OSCON 2012 session: "Generic Programming Galore using D"

2012-04-05 Thread Walter Bright
On 4/3/2012 7:59 AM, Andrei Alexandrescu wrote: I'm not sure, but recording conferences is quickly becoming the default. Which is really cool. Having attended many conferences, often the really good stuff is going on in the halls. So I am always faced with "do I attend the presentation, or do

Re: unzip parallel, 3x faster than 7zip

2012-04-05 Thread Jay Norwood
I think he is talking about 7zip the standalone software, not 7zip the compression algorithm. 7zip took 55 secs _on the same file_. Yes, that's right, both 7zip and this uzp program are using the same deflate standard format of zip for this test. It is the only expand format that is su

Re: Oracle Database - ocilib

2012-04-05 Thread dnewbie
On Thursday, 5 April 2012 at 17:58:15 UTC, Walter Bright wrote: https://github.com/D-Programming-Deimos/ocilib Thank you.