免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2618 | 回复: 1
打印 上一主题 下一主题

[函数] 【erlang ets】 [复制链接]

论坛徽章:
27
水瓶座
日期:2014-08-22 21:06:34程序设计版块每日发帖之星
日期:2015-11-25 06:20:0015-16赛季CBA联赛之新疆
日期:2015-12-19 19:05:48IT运维版块每日发帖之星
日期:2015-12-25 06:20:31IT运维版块每日发帖之星
日期:2015-12-25 06:20:31IT运维版块每日发帖之星
日期:2015-12-25 06:20:3315-16赛季CBA联赛之上海
日期:2016-04-15 19:51:31程序设计版块每日发帖之星
日期:2016-04-17 06:23:29程序设计版块每日发帖之星
日期:2016-04-23 06:20:00程序设计版块每日发帖之星
日期:2016-05-26 06:20:00每日论坛发贴之星
日期:2016-05-26 06:20:0015-16赛季CBA联赛之辽宁
日期:2017-02-16 23:59:47
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2015-06-18 17:40 |只看该作者 |倒序浏览
  1. cache_create() ->
  2.     ets:new(cm_tab, [set,{keypos, #channel.local_id}]).

  3. cache_lookup(Cache, Key) ->
  4.     case ets:lookup(Cache, Key) of
  5.         [Channel] ->
  6.             Channel;
  7.         [] ->
  8.             undefined
  9.     end.

  10. cache_update(Cache, #channel{local_id = Id} = Entry) when Id =/= undefined ->
  11.     ets:insert(Cache, Entry).

  12. cache_delete(Cache, Key) ->
  13.     ets:delete(Cache, Key).

  14. cache_delete(Cache) ->
  15.     ets:delete(Cache).

  16. cache_foldl(Fun, Acc, Cache) ->
  17.     ets:foldl(Fun, Acc, Cache).
  18.    
  19. cache_find(ChannelPid, Cache) ->
  20.    case ets:match_object(Cache, #channel{user = ChannelPid}) of
  21.        [] ->
  22.            undefined;
  23.        [Channel] ->
  24.            Channel
  25.    end.
复制代码

论坛徽章:
27
水瓶座
日期:2014-08-22 21:06:34程序设计版块每日发帖之星
日期:2015-11-25 06:20:0015-16赛季CBA联赛之新疆
日期:2015-12-19 19:05:48IT运维版块每日发帖之星
日期:2015-12-25 06:20:31IT运维版块每日发帖之星
日期:2015-12-25 06:20:31IT运维版块每日发帖之星
日期:2015-12-25 06:20:3315-16赛季CBA联赛之上海
日期:2016-04-15 19:51:31程序设计版块每日发帖之星
日期:2016-04-17 06:23:29程序设计版块每日发帖之星
日期:2016-04-23 06:20:00程序设计版块每日发帖之星
日期:2016-05-26 06:20:00每日论坛发贴之星
日期:2016-05-26 06:20:0015-16赛季CBA联赛之辽宁
日期:2017-02-16 23:59:47
2 [报告]
发表于 2015-06-19 10:14 |只看该作者
  1. {keypos,Pos} Specfies which element in the stored tuples should be used as key. By default, it is the first element, i.e. Pos=1. However, this is not always appropriate. In particular, we do not want the first element to be the key if we want to store Erlang records in a table.

  2. Note that any tuple stored in the table must have at least Pos number of elements.
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP