something like Application
Posted: Wed Jan 10, 2007 1:45 am
Is there something in php which is similar to Application in ASP?
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
It's a container for application wide data. Imagine you have 100 people using an app, Application would be used for data that's shared between all of them such as counters, locks, maybe even database connections (though that would be better handled by a proper connection pool).dibyendrah wrote:What does Application in ASP do ?
You can use a shared memory in PHP: http://php.net/manual/de/ref.sem.phponion2k wrote:It's a container for application wide data.
The answer is that you could certainly make something that does that ... but that is not the shared-nothing way of PHP. Use .NET if you like/need something like that.nitinjavakid wrote:thanks
Instead of the default storage engine you specify HEAP or MEMORY during table creation. That's it.dibyendrah wrote:Heap table is new to me. Will you please give a brief on implementing heap table using php ?