[eluser]Jamongkad[/eluser]
[quote author="xwero" date="1221045214"]How much damage does it do, performance wise? Creating functions is very slow i am told.[/quote]
The old library which I posted a few months ago had did alot of damage in terms of performance. The Lam construct was akin to create_function in all intents and purposes. A much smarter man than I am "MetaPundit" pointed out to me that the reason there was such a hit in performance is because PHP's garbage collector does not garbage collect the create lambda functions. Thus polluting the function namespace. So what was the solution? PHP's GC garbage collects objects! So it was simple convert lam into an object. Bam! No more memory issues.