libertyct Posted July 17, 2008 Share Posted July 17, 2008 does anybody know whats the max amount of data a session in php can hold? example can i store a table with 1000 rows in a session? Quote Link to comment https://forums.phpfreaks.com/topic/115250-maximum-data-you-can-store-in-a-session-object/ Share on other sites More sharing options...
discomatt Posted July 17, 2008 Share Posted July 17, 2008 I don't see why not. But the more data you store, the more memory the script will use. It would also store the data in a temporary file, so several users holding this session data at once may begin to cause a problem. Quote Link to comment https://forums.phpfreaks.com/topic/115250-maximum-data-you-can-store-in-a-session-object/#findComment-592506 Share on other sites More sharing options...
The Little Guy Posted July 17, 2008 Share Posted July 17, 2008 I believe you are limited by your hard drive space, so if one session is 20GB, then as long as your hard drive is 20GB+ you should be fine (Just from reading other forums). (Hypothetical) Quote Link to comment https://forums.phpfreaks.com/topic/115250-maximum-data-you-can-store-in-a-session-object/#findComment-592507 Share on other sites More sharing options...
GingerRobot Posted July 17, 2008 Share Posted July 17, 2008 Why on earth would you wish to store that kind of information in a session? Quote Link to comment https://forums.phpfreaks.com/topic/115250-maximum-data-you-can-store-in-a-session-object/#findComment-592519 Share on other sites More sharing options...
discomatt Posted July 17, 2008 Share Posted July 17, 2008 Why on earth would you wish to store that kind of information in a session? My thoughts exactly. It could possibly be more efficient if it were remote data or something similar. Quote Link to comment https://forums.phpfreaks.com/topic/115250-maximum-data-you-can-store-in-a-session-object/#findComment-592524 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.