I am fairly new to web programming, I have mainly used java to create desktop applications in the past.
I\'m trying to figure out how to create persistent objects in
Usually you get your persistence by using the database. If that's a bottleneck you start caching data, for example in memcached or maybe a local file with a serialized array on your webserver.