在NS-3中使用Content Store

时间:2017-01-31 12:56:58

标签: c++ networking network-programming ns-3

我是ns-3的新用户,当我在ns-3中创建新方案时,我无法弄清楚如何使用内容存储参数。我不断改变大小,但结果似乎没有太大变化。关于如何有效使用内容存储库的任何想法?

 ndn::StackHelper ndnHelper;
  ndnHelper.SetOldContentStore("ns3::ndn::cs::Lru", "MaxSize", "100");
  ndnHelper.InstallAll()

1 个答案:

答案 0 :(得分:0)

尝试使用

更改CS大小
Config::Set ("/NodeList/0/$ns3::ndn::ContentStore/MaxSize", UintegerValue (1)); // number after nodeList is global ID of the node (= node->GetId ())
Config::Set ("/NodeList/1/$ns3::ndn::ContentStore/MaxSize", UintegerValue (2));
Config::Set ("/NodeList/2/$ns3::ndn::ContentStore/MaxSize", UintegerValue (200));

来源:http://www.lists.cs.ucla.edu/pipermail/ndnsim/2013-February/000080.html