- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我的内存有问题。我不明白为什么当我的程序长时间运行时 Go 使用越来越多的内存(从不释放它)。
第一次分配后,程序使用了将近 9 MB 的内存。然后在 12 小时后,它开始以指数方式使用更多内存,直到 800 MB。
//.....code.....
if bol {
// Assignment Struct.Var
Struct_VastScript.TxtNoticeTop = JsonStruct_S.Options.TxtNoticeTop
Struct_VastScript.TxtNoticeBottom = JsonStruct_S.Options.TxtNoticeBottom
Struct_VastScript.Loop = JsonStruct_S.Options.Loop
Struct_Image, err := getImage(Struct_VastScript.Video)
if err == nil {
if mobile == "true" {
Struct_VastScript.Image = Struct_Image.URL360
}
}
//open and parse a template file
fi = path.Join("templates/VastPlayer", "TempVastPlayer.txt")
tmpl, err := template.ParseFiles(fi)
if err != nil {
job_1.Complete(health.Panic)
return false, err
}
//substitute fields in the template 'tmpl', with values from 'XmlStruct_V' and write it out to 'buf'
var buf bytes.Buffer
if err := tmpl.Execute(&buf, Struct_VastScript); err != nil {
//if err := tmpl.Execute(w, XmlStruct_V); err != nil {
job_1.Complete(health.Panic)
return false, err
}
// Call Func randString() : return alphanum random
dir := randString(12)
fpath := "http://creative2.xxx.io/api/html/" + dir
// Create a new EndPoint to write the generated 'template' on 'w' http.ResponseWriter
routeHtml := "/api/html/" + dir
http.HandleFunc(routeHtml, http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
//writes Template to 'w' http.ResponseWriter
fmt.Fprintf(w, buf.String())
fmt.Println("successfull Operation 2 !!")
fmt.Println("")
job_2.Complete(health.Success)
}))
//Call Func JsonReply(): return the finale Json response
str := JsonReply(fpath, JsonStruct_S.Options.Animated, JsonStruct_S.Options.Responsive, JsonStruct_S.Options.Clickurl, JsonStruct_S.Options.Width, JsonStruct_S.Options.Height, adid, campaignid, JsonStruct_S.Type, JsonStruct_S.Options.Aspectratio, mobile)
w.Header().Set("Content-Type", "application/json")
//writes FinaleJson to 'w' http.ResponseWriter(it contains the link of the second endpoint "/api/html/")
fmt.Fprint(w, str)
fmt.Println("successfull Operation !!")
fmt.Println("")
job_1.Complete(health.Success)
return true, nil
} else {
return false, nil
}
对于每个调用,我的服务需要使用我收到的参数生成一个新模板,如您所见,我为每个调用创建一个新端点,我不知道这是否是个好主意,我认为问题来了来自这部分代码,但我不确定,因为我不知道 GO 是如何管理它的。
最佳答案
显然,您不应该在每次出现请求时都创建处理程序。他们从不释放内存,所以你最终会遇到内存不足的异常。
相反,将处理程序端点放入数组( slice )并使用一个处理程序来响应请求,方法是查看此 slice 中的 URL,然后从不再需要的 slice 中删除该项目。
所以基本上,而不是
routeHtml := "/api/html/" + dir
http.HandleFunc(routeHtml, http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
//writes Template to 'w' http.ResponseWriter
fmt.Fprintf(w, buf.String())
fmt.Println("successfull Operation 2 !!")
fmt.Println("")
job_2.Complete(health.Success)
}))
做
type JobInfo struct {
Path string
// some data here
}
// maybe global context
var jobs []JobInfo
// initialisation
jobs = make([]JobInfo, 0)
http.HandleFunc("/api/html/", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
path := r.URL.Path
var job *JobInfo
for _, j := range jobs {
if j.Path == path {
job = &j
break
}
}
if job != nil {
// handle job request here
}
}))
// and then in the jobs' loop
handlers = append(handlers, JobInfo{"/api/html/" + dir, ...})
它会起作用 because :
Patterns name fixed, rooted paths, like "/favicon.ico", or rooted subtrees, like "/images/" (note the trailing slash). Longer patterns take precedence over shorter ones, so that if there are handlers registered for both "/images/" and "/images/thumbnails/", the latter handler will be called for paths beginning "/images/thumbnails/" and the former will receive requests for any other paths in the "/images/" subtree.
当然,不要忘记清理数组 jobs
。
关于memory - 戈朗 : trouble with memory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31720810/
假设我有一个论坛,其中包含用户/管理员可以访问/管理的主题。 当用户访问它时,我首先会检查主题是否存在;在我设置一个标志后,告诉系统用户是否已访问过该主题。 这将是基本代码: 1 if(
我有一个基类 MessageHandler 和 2 个派生类,MessageHandler_CB 和 MessageHandler_DQ。 派生类重新定义了 handleMessage(...) 方法
我已经在我的 NOOBS 操作系统上安装了 v4l2loopback,但它不起作用。 我已经检查过是否安装了 v4l2loopback,它是。但是当我输入 sudo modprobe v4l2loop
我们正处于项目的最后一步,我们无法摆脱这个问题。 基本上,我们正在开发的页面是在视频中创建章节的表单。对于创建的每个章节,验证后都会创建一张小“卡片”。我们希望用户能够通过单击每个章节卡中显示的 X
我是 C# 新手。也许我没有正确地实现 IEquatable,因为我的类型的对象应该被认为是相同的,但不是。 类(class): class CompPoint : IComparable {
在我的代码顶部,我需要询问用户是否想玩游戏。使用字符串函数查看他们答案的第一个字母并将其变为小写。如果他们的答案 == "y"然后玩游戏。我需要帮助将 Yes 的第一个字母小写。
我正在尝试导出我的数据库。我尝试过通过电子邮件并分享它。 问题是我想导出数据库的当前状态(以及其中的所有信息)。 我已经尝试过这段代码: func exportDatabase(){ var
我在分层情况下遇到 getcomponentat 问题。我进行了很多研究,发现以下线程实际上是我需要的,但它对我不起作用。我在线程中下载了代码并且它可以工作但是当我在我的项目中实现它时它没有。我可能正
我有麻烦了。带标题:我不知从哪里得到了 8px 的 margin !我希望我的标题附加到覆盖所有顶部区域而没有边距。但是我只用 margin :-8px; 得到这个东西但是对于不同的屏幕我需要设置其他
我创建了 2 个页脚,第二个页脚使用 css position: absolute 但结果是,第一个页脚不再起作用。 结果是这样的: 最佳答案 请分享您的代码以供理解。 如果您使用的是 positio
我有一个新手问题: bool _isPalindrome(const string& str) { return _isPalindrome(str.begin(), str.end());
我正在尝试构建一个蒙德里安艺术创作器,它允许您创建任意数量的矩形,每个矩形的大小都是随机的。我能够创建随机大小,但我遇到的麻烦是让它创建两个以上的随机矩形。 import turtle import
谁能告诉我为什么以下内容不匹配: >>> re.search(r'(\d{2, 10})', '153') 这个匹配: >>> re.search(r'\d{3}', '153') 最佳答案 re模
我已经为主屏幕构建了一个小部件,并在我的 AppWidgetProvider 类中声明了一些变量。这些变量是整数和 boolean 值。 我遇到的问题(它基本上是一个 Java 编程问题)是我分配给变
我的内存有问题。我不明白为什么当我的程序长时间运行时 Go 使用越来越多的内存(从不释放它)。 第一次分配后,程序使用了将近 9 MB 的内存。然后在 12 小时后,它开始以指数方式使用更多内存,直到
当我使用 g++ 编译以下代码时 class A {}; void foo(A&) {} int main() { foo(A()); return 0; } 我收到以下错误消息: > g++
我正在尝试在我的应用程序中的 iPhone 屏幕上拖动 UIImageView。 目前我设置的拖动功能很好,拖动图像确实可以在屏幕上移动它,问题是你不必拖动 ImageView 来移动它,你也可以在屏
我无法解释这种行为: 有时,我的图表会显示带有大量小数的轴的第一个或最后一个标签。 在我的图表选项中,yAxis 如下所示: yAxis : [{ alternateGridColor: "
我的 update() 函数遇到问题。在这里,在 svg.append('rect') 中,我有 .on('click'),我只需更改数据,然后运行 update(). 为什么这不起作用?我该如何
自从我切换到最近的 emacs 版本 (23.2) 附带的 CEDET 后,CEDET 不再可靠地工作。例如,我无法再重新生成 EDE 项目。 环顾四周后,似乎压缩包中缺少所有 CEDET 模板。有谁
我是一名优秀的程序员,十分优秀!