in reply to How many DB_Files can I safely tie at one time?

I don't think there are any limits from the Perl side. However, Perl is using the db libraries present on your system, and depends on their mercy. If there's a limit in the library you use, your program might hit the limit. Same for the overhead. There's some tie based overhead on the Perl site, and some overhead because it needs to defer actions to the library, but the juice is happening in the library.

Abigail

  • Comment on Re: How many DB_Files can I safely tie at one time?