Noam Noam wrote:
> Hi all,
> after more examination of the fails,
> its look like pstore.rb fail in line #179
> File.unlink(new_file)
> 
> any one have an idea' whats the problem????
> 

I think you can't delete a file in use. (unlink == delete)

So the problem is what others have already mentioned, it's a lock file 
or something that prevents another process from thrashing the storage 
file while you're reading from it.

David Vallner