doulian8485 2013-08-28 12:28
浏览 38

Golang:存储/缓存在以下http请求中提供的值

I am writing some Go webservices (also implementing the webserver in Go with http.ListenAndServe). I have a map of structs which I would like to keep in memory (with an approximate data size of 100Kb) to be used by different http requests.

Which is the best way to achieve this in Go? In your experience, is it better to use global package variables or caching systems (like memcache/groupcache)?

  • 写回答

3条回答 默认 最新

  • drqwbh2150 2013-08-28 12:54
    关注

    Don't indulge in premature optimization. Define a Go package API to encapsulate the data and then you can change the implementation at any time. For example, just scribbling,

    package data
    
    type Key struct {
        // . . .
    }
    
    type Data struct {
        // . . .
    }
    
    var dataMap map[Key]Data
    
    func init() {
        dataMap = make(map[Key]Data)
    }
    
    func GetData(key Key) (*Data, error) {
        data := dataMap[key]
        return &data, nil
    }
    
    评论

报告相同问题?

悬赏问题

  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?
  • ¥15 加热介质是液体,换热器壳侧导热系数和总的导热系数怎么算