赞 | 2 |
VIP | 12 |
好人卡 | 2 |
积分 | 1 |
经验 | 4259 |
最后登录 | 2022-12-28 |
在线时间 | 192 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 116
- 在线时间
- 192 小时
- 注册时间
- 2008-5-11
- 帖子
- 547
|
- #==============================================================================
- # ■ Memories_Exchange
- #------------------------------------------------------------------------------
- # 将内存中不必要的空间释放到虚拟内存中。
- #==============================================================================
- class Memories_Exchange
- #--------------------------------------------------------------------------
- # ● 初始化对像
- # ● ● ● 尽量减少调用次数● ● ●
- #--------------------------------------------------------------------------
- def initialize()
- $SetProcessWorkingSetSize = Win32API.new("kernel32", "SetProcessWorkingSetSize", 'lll', 'l')
- $GetCurrentProcess = Win32API.new("kernel32", "GetCurrentProcess", 'v', 'l')
- $SetProcessWorkingSetSize.call ($GetCurrentProcess.call, -1, -1)
- end
- end
复制代码 效果待测,尽量不要调用 |
|