c# 实现轮询算法实例代码

作者:pengpeng 时间:2023-01-30 03:48:51 

c# 轮询算法

这两天做东西,业务上有个特殊的需求,在用户访问页面的时候,针对某一行代码进行控制,按照概率来进行显示,我做的是针对当前页面的曝光进行处理,曝光代码是第三方的,页面上只要有这段代码就算是执行了这段曝光代码,所以才写了这个轮询的一个方法,这个方法可以根据自己的需求修改,下面我把这个方法全部帖出来:

CacheSlidingExpirationHour:时间,缓存时间2小时

CountdownCurrentIndexCacheName:缓存名称

log:日志

m_objCountdownCurrentIndexLock::当前对象

m_snIntervalSecond:定义一个数组,可以视为概率值

说明:0,1,1,1  数据中存了4个数,我们设为总的概率为100%,每个代表25%,所以现在我设置的是当前的概率为75%

存如缓存的是数据的索引,取的时候也取的索引,方法返回索引,转成int类型


public class CountdownHelper
 {
    private const int CacheSlidingExpirationHour = 2;
    private const string CountdownCurrentIndexCacheName = "OnlineMeetingCountdownCurrentIndex";
    private static IAppLog log = AppLoggerManager.GetLogger(typeof(CountdownHelper));
    private static Cache m_cache = HttpContext.Current.Cache;
    private static object m_objCountdownCurrentIndexLock = new object();
    private static int[] m_snIntervalSecond = new int[] { 0, 1 , 1 , 1}; //1显示 0不显示

public CountdownHelper()
    {
    }

public int GetCountdownAddedSecond()
    {
      lock (m_objCountdownCurrentIndexLock)
      {
        int nCountdownCurrentIndex = 0;

try
        {
          object objCountdownCurrentIndex = m_cache[CountdownCurrentIndexCacheName];
          if (objCountdownCurrentIndex == null)
          {
            //如果需要加缓存的,就用下面的
            //m_cache.Insert(CountdownCurrentIndexCacheName, 1, null, Cache.NoAbsoluteExpiration, TimeSpan.FromHours(CacheSlidingExpirationHour), CacheItemPriority.NotRemovable, null);
            //不用加缓存的用下面的
            m_cache.Insert(CountdownCurrentIndexCacheName, 1, null, Cache.NoAbsoluteExpiration, Cache.NoSlidingExpiration, CacheItemPriority.NotRemovable, null);
          }
          else
          {
            nCountdownCurrentIndex = (int)objCountdownCurrentIndex;

if (nCountdownCurrentIndex == m_snIntervalSecond.Length - 1)
            {
              m_cache[CountdownCurrentIndexCacheName] = 0;
            }
            else
            {
              m_cache[CountdownCurrentIndexCacheName] = nCountdownCurrentIndex + 1;
            }
          }

return m_snIntervalSecond[nCountdownCurrentIndex];
       }
       catch (Exception __error)
        {
          //如果需要记录错误日志的,可以记录到这里,我这里没有加
          //log.Error("功能介绍GetCountdownAddedSecond:" + __error.Message);
          if (nCountdownCurrentIndex > m_snIntervalSecond.Length - 1)
          {
            nCountdownCurrentIndex = m_snIntervalSecond.Length - 1;
         }
          return m_snIntervalSecond[nCountdownCurrentIndex];
        }
      }
    }

}

这个功能的需求是:业务部门需要监控当前页面的曝光率,所以需要用概率去判断当前的曝光代码如何在页面上交替显示,起初是曝光率为50%,所以数组中直接就是new int[] { 0, 1},后来改成75%,就是上面的代码,所以这样既可以监控曝光,有可以控制曝光代码。

前台调用是用AJAX方式:

说明:等于1,将曝光代码添加到页面,否则不加


1 <div id="adver"></div>

<!--轮询曝光-->
  $.post("/Topic/GetCountdownAddedSecond", function (data) {
   if (data) {
      if (data.num == 1) {
       var img_html = "<img src=\"https://d_directed_treatment =?\ment\" style=\"display:none;\">";
        $("#adver").html(img_html);
      }
    }
  }, "json");

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

来源:http://www.cnblogs.com/zhangpengnike/p/5546046.html

标签:c#,轮询算法
0
投稿

猜你喜欢

  • svn 清理失败 (cleanup 失败) 的快速解决方法

    2022-10-25 11:22:40
  • Java实现显示指定类型的文件

    2021-10-26 11:30:37
  • Android四大组件之BroadcastReceiver详解

    2023-03-17 02:55:08
  • Springboot集成graylog及配置过程解析

    2023-06-18 17:15:02
  • C#实现启用与禁用本地网络的方式小结【3种方式】

    2022-04-21 18:45:14
  • Flutter Flow实现滑动显隐层示例详解

    2022-01-29 23:50:56
  • C#异步编程详解

    2023-02-13 13:10:39
  • JVM 心得分享(加载 链接 初始化)

    2023-09-01 19:17:50
  • Java中Lambda表达式和函数式接口的使用和特性

    2023-06-20 20:05:42
  • C#数据类型转换(显式转型、隐式转型、强制转型)

    2021-11-24 13:44:25
  • SpringBoot使用Redis实现分布式锁

    2021-11-06 20:10:22
  • Android Studio Intent隐式启动,发短信,拨号,打电话,访问网页等实例代码

    2023-03-22 15:43:33
  • spring boot 加载web容器tomcat流程源码分析

    2021-12-05 14:48:38
  • java基础之数组常用操作总结(必看篇)

    2022-12-09 03:32:17
  • 配置Android SDK

    2023-12-05 09:57:29
  • Android Flutter实现仿闲鱼动画效果

    2023-07-15 15:32:47
  • 解决AMD无法使用Android studio问题

    2022-04-13 00:17:32
  • Android开发中Activity的生命周期及加载模式详解

    2021-07-28 02:33:44
  • Android Studio使用USB真机调试详解

    2022-05-23 00:49:40
  • Java调用Shell命令的方法

    2022-01-06 20:01:34
  • asp之家 软件编程 m.aspxhome.com