最近接手一個公司的論壇
所以我也想著手改善一下
我之前的想法是論壇啟動時往Memcached服務器填上大量數據
現在沒有Cache服務器
[
[
[
[
DL集合實現
using System;
using System
using System
namespace Phantaci
{
///
/// 原因:
/// List集合有根據索引查找的功能
/// Dictionary支持這種集合
///
/// 需求:
/// 我需要一個集合類
/// 當我往集合裡
///
/// 應用:
/// 論壇版塊列表緩存
當
/// 同時刪除尾部最後一個節
///
///
public class DictionaryList<T>
{
///
/// 用於存放所有實體列表集合類 TopicId
///
private Dictionary<int
//private Object _objLock = new Object();
///
/// 索引主題集合類 用於存放TopicId 與 _entityDictionary關聯
///
private List<int> _indexList = new List<int
From:http://tw.wingwit.com/Article/program/net/201311/13673.html