I\'m using CodeIgniter and I have user data that needs to be stored in some way then updated. Basic things like name, id, points, comment count etc
At the moment whe
Why can't you store the data in a database? If your worried about performance you could use something like Memcache or APC to cache it but it seems like comment count and points are data that need to persist between sessions.
You would still need to write the data to the database as well as the cache but then you could read the data directly from the cache instead of querying for it.