Re: [algogeeks] extendible hashing

2011-02-17 Thread jagannath prasad das
@ashish goel:can you plz give the link On Mon, Feb 14, 2011 at 9:00 AM, Ashish Goel ashg...@gmail.com wrote: check on code.google.com a very nice code there, that i had picked 1 yr back...you may like to find Best Regards Ashish Goel Think positive and find fuel in failure +919985813081

Re: [algogeeks] extendible hashing

2011-02-13 Thread Gene
Two or three versions ago at least the documents had very nice examples, and there were examples in the source distribution. I have a hard time believing they've been removed. -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to this

Re: [algogeeks] extendible hashing

2011-02-13 Thread Ashish Goel
check on code.google.com a very nice code there, that i had picked 1 yr back...you may like to find Best Regards Ashish Goel Think positive and find fuel in failure +919985813081 +919966006652 On Wed, Feb 9, 2011 at 1:18 PM, jagannath jpdasi...@gmail.com wrote: i want to implement extendible

Re: [algogeeks] extendible hashing

2011-02-12 Thread jaladhi dave
If you want to access disk blocks directly, hack to disk driver and create a flat file for block lookups. On Wed, Feb 9, 2011 at 11:32 PM, jagannath prasad das jpdasi...@gmail.com wrote: guys someone help me out..its urgent On Wed, Feb 9, 2011 at 1:18 PM, jagannath jpdasi...@gmail.com

Re: [algogeeks] extendible hashing

2011-02-11 Thread jagannath prasad das
can u plz give the link or any source codes if possible.thanx in advance On Fri, Feb 11, 2011 at 6:35 AM, Gene gene.ress...@gmail.com wrote: If I remember correctly Berkeley DB uses an extensible hashing system or did at one time. This is not part of the OS API, but rather a library

Re: [algogeeks] extendible hashing

2011-02-11 Thread jagannath prasad das
how to access berkley DB any source On Fri, Feb 11, 2011 at 4:01 PM, jagannath prasad das jpdasi...@gmail.comwrote: can u plz give the link or any source codes if possible.thanx in advance On Fri, Feb 11, 2011 at 6:35 AM, Gene gene.ress...@gmail.com wrote: If I remember correctly

Re: [algogeeks] extendible hashing

2011-02-11 Thread Gene
This is a very lame question. Type Berkeley DB into Google. The 3rd listing is Berkeley DB downloads at Oracle: http://www.oracle.com/technetwork/database/berkeleydb/downloads/index.html Wouldn't it have been easier to do this than to write back to the group? It certainly would have been

Re: [algogeeks] extendible hashing

2011-02-11 Thread jagannath prasad das
i wanted the source code not this..anyway thanks.. On Sat, Feb 12, 2011 at 1:46 AM, Gene gene.ress...@gmail.com wrote: This is a very lame question. Type Berkeley DB into Google. The 3rd listing is Berkeley DB downloads at Oracle:

Re: [algogeeks] extendible hashing

2011-02-10 Thread Gene
If I remember correctly Berkeley DB uses an extensible hashing system or did at one time. This is not part of the OS API, but rather a library that runs in user space. I've used the B-tree parts of Berkeley DB, though never the hash table. Performance and reliability have been extremely

[algogeeks] extendible hashing

2011-02-08 Thread jagannath
i want to implement extendible hashing for may major project.so the crux of the problem is to directly access the disk block without using the undelying os file system interface.one idea which comes to my mind is to build a virtual file system interface for my project but currently i want to avoid