Re: tie question

2000-08-03 Thread Eric L. Brine
why is tie considered not very efficient i use it often.. what is 'a' much better way? Many modules which use tie also provide an object oriented interface. It's more efficient to use the OO interface according to benchmarks I've seen here. If you have two modules, one which has an OO

tie question

2000-07-31 Thread dreamwvr
hi, why is tie considered not very efficient i use it often.. what is 'a' much better way? TIA

Re: tie question

2000-07-31 Thread Matt Sergeant
On Mon, 31 Jul 2000, dreamwvr wrote: hi, why is tie considered not very efficient i use it often.. what is 'a' much better way? tie isn't very efficient simply because the code behind it (in the core of Perl) is fairly complex and slow. Theres not a lot that can be done to improve it

Re: tie question

2000-07-31 Thread Perrin Harkins
On Mon, 31 Jul 2000, Matt Sergeant wrote: On Mon, 31 Jul 2000, dreamwvr wrote: hi, why is tie considered not very efficient i use it often.. what is 'a' much better way? tie isn't very efficient simply because the code behind it (in the core of Perl) is fairly complex and slow.