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

  • Home
  • SEARCH
  • 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 8791029
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T22:47:13+00:00 2026-06-13T22:47:13+00:00

I want to store an object in GAE’s memcache using Go. The gae documentation

  • 0

I want to store an object in GAE’s memcache using Go. The gae documentation only shows how to store a []byte here: https://developers.google.com/appengine/docs/go/memcache/overview

Of course there are general ways to serialize an object into []byte, by which my task could be accomplished. But by reading the memcache reference, I found there is an “Object” in the memcache Item:

// Object is the Item's value for use with a Codec.
Object interface{}

That seems to be a built-in mechanic to store an object in memcache. However, the gae documentation did not provide a sample code.

Could anyone please show me an example? Thanks in advance

  • 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-13T22:47:14+00:00Added an answer on June 13, 2026 at 10:47 pm

    OK, I just figured it out my self. The memcache pkg has two built-in Codec: gob and json. Just use one of them (or of course one can create his own Codec):

    var in, out struct {I int;}
    
    // Put in into memcache
    in.I = 100 
    item := &memcache.Item {
       Key: "TestKey",
       Object: in, 
    }   
    memcache.Gob.Set(c, item)  // error checking omitted for convenience
    
    // retrieve the value
    memcache.Gob.Get(c, "TestKey", &out)
    fmt.Fprint(w, out)  // will print {100}
    

    Thanks all

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

Sidebar

Related Questions

I want to store an object that contains a List of primitives using EF.
I'm using Devart to execute DB object and Store Procedure mapping. Now i want
In GWT I want to store an Object on the server that contains session
In my ios application i want to store an object's reference. This object can
I am having a class Student. I want to store the object of class
I want to store a .NET object into Azure Blob Storage. Currently I serialize
I want to store 10 Obj object in objList , but i don't know
I want to use session object in my web app.I want to store some
I want to serialize an object and store it inside sdcard under my project
My User object that I want to create and store in the datastore has

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.