Snapey7 years agoLevel 122ReplyReport SpamI don't understand the question. Do you mean the size of the individual session files or the amount of memory in use by php? Like Reply
baloch OP 7 years agoLevel 1ReplyReport Spami'm storing data in session like this and some other data, how can i find out the total size of my current session $cart = Cart::where('customer_id',$customer->id)->get(); Session::put('cart', $cart); Like Reply 1 like
Snapey7 years agoLevel 122ReplyReport SpamLook at the files in framework/storage/sessions. This is the serialized version of the session size. Check it before and after you store cart to the session. I'd be surprised if it was any where near 1MB, and the limit is over 100 times that Like Reply