object persistence in php

后端 未结 7 2196
孤城傲影
孤城傲影 2020-12-14 02:48

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

7条回答
  •  抹茶落季
    2020-12-14 03:03

    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.

提交回复
热议问题