Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7707087
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T00:16:20+00:00 2026-06-01T00:16:20+00:00

How to store large JSON String in cookie ? I have to use cookie

  • 0

How to store large JSON String in cookie ? I have to use cookie only, session is not an option in my case. Can anyone post example code to compress string and store in cookie and also retrieve that successfully. Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T00:16:21+00:00Added an answer on June 1, 2026 at 12:16 am

    Compressing the data doesn’t seem like such a great idea. Rather, I’d keep it in a database and only store the database entry’s ID in a cookie. That would also prevent people from tampering with the data, albeit tampering with the ID will still be possible. Using sessions would be better and eliminate this.

    However, if you insist on storing the data in a cookie, you can compress the data using either gzcompress(), gzdeflate() or gzencode(). These all offer compression. gzdeflate() would be the best choice for your problem, seeing that it is most space-efficient.

    $compressedJSON = gzdeflate($json, 9);
    setcookie('json', $compressedJSON);
    

    And to read it

    $compressedJSON = $_COOKIE['json'];
    $json = gzinflate($compressedJSON);
    

    Keep in mind that even if the compression will be enough for your data to stay within the 4K limit, you might eventually exceed that, should the amount of JSON data you need stored grow.

    I still suggest you use a database instead.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We have a large code base that makes copious use of the JSON v1
Can I store large amounts of image files in subversion. My designers usually create
What's the best way to store large JSON files in a database? I know
I have a php script that outputs a json-encoded object with large numbers (greater
I need to store a large number of json feeds into Core Data. There
I would like to store large dataset generated in Python in a Django model.
I'm developing an application which needs to store large amounts of data. I cannot
I want to store a large amount of data onto my Arduino with a
I would like to store very large sets of serialized Ruby objects in db
I am creating a rails application that needs to store a large amount of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.