首页 \ 问答 \ 由于不同的病毒扫描程序,Microsoft Visual Studio的减速(Slowdown of Microsoft Visual Studio due to different Virus scanner)

由于不同的病毒扫描程序,Microsoft Visual Studio的减速(Slowdown of Microsoft Visual Studio due to different Virus scanner)

与Microsoft Visual Studio一起使用的速度最慢的病毒扫描程序是什么?

由于我的病毒检查器(...),100多个项目,其中有一些超过100个C#文件,所以任何减慢构建速度的事情都是糟糕的。)

我们都知道,开发工具做很多文件访问,所以病毒扫描程序是非常有效的。 由于很多原因,我们大多数人必须运行病毒扫描器。

所以有谁测量了不同病毒扫描仪(和设置)对Microsoft Visual Studio的速度的影响?

有没有人使用Visual Studio绑定Microsoft Security Essentials ?

参见(如果你有代表,请延长列表)

  • 什么真的让Windows下降 (这有一些真实的数据)
  • Visual Studio和病毒扫描Temp文件夹
  • Visual Studio优化
  • 开发机器和防病毒策略(Sophos Anti-Virus)
  • 用于开发者机器的防病毒(Symantec Endpoint)配置
  • 最少侵入式防病毒软件用于开发PC?
  • 建议使用卓越的病毒防护功能实现高效的硬件设置。
  • 选择防毒软体(编码恐怖)

人们在使用Visual Studio 2010和病毒检查器时遇到什么?


作为微软自己发言的一个有用的电子邮件(将重命名无名)的一部分,我得到了这一点。

不清楚我们( 微软 )是否能够认可第三方产品。 考虑到这一点,我确实注意到,在发布的Ian链接到( 这个问题 ), Computer Associates被某人列为开发环境最好的病毒检查器之一,这有趣的是一个我相信许多Microsoft开发人员的产品在他们的桌面上使用。


自从提出这个问题以来,我对Microsoft Security Essentials的问题最少,但是我没有任何事实或测量来支持这一点。


What is the least slow Virus scanner to use with Microsoft Visual Studio

I have just had Microsoft Visual Studio “go slow” on me again due to my Virus Checker… (100s of Projects, some with over 100 C# files in them, so any thing that slows down builds is bad.)

We all know that development tools do a lot of file access so are badly effect by Virus Scanner. Most of us have to run a Virus scanner due to do many reasons.

So has anyone measured the effect of different virus scanners (and settings) on the speed of Microsoft Visual Studio?

Has anyone tied Microsoft Security Essentials with Visual Studio?

See also (if you have the rep, please extend the list)

What are peoples experiences with Visual Studio 2010 and virus checkers?


I got this as part of a helpful email from someone (that will rename nameless) at Microsoft speaking on his own behalf.

It’s not clear that we (Microsoft) would be able to endorse 3rd party products. With that in mind, I did notice that in the posting Ian linked to (this question) that Computer Associates was listed by someone as one of the best performing virus checkers for development environments, which interestingly enough is a product that I believe many Microsoft developers use on their desktops.


Since asking this question, I have had the least problems with Microsoft Security Essentials, however I have no facts or measurments to back this up.


原文:https://stackoverflow.com/questions/1305709
更新时间:2022-03-12 12:03

最满意答案

使用Set#size()

System.out.println(hashtags.size());

Use Set#size()

System.out.println(hashtags.size());

相关问答

更多
  • 如果我们获得更多信息,例如您尝试过的内容以及收到的各种错误消息,将会很有帮助。 正如kaveh在上面评论的那样,这段代码有一些主要的缩进问题。 一旦我解决了这些问题,就会遇到许多其他逻辑错误。 我做了一些假设: list_file_data被分配给'../data/phrases.txt'但是然后循环遍历目录中的所有文件。 由于您没有对其他地方的多个文件进行任何处理,因此我删除了该逻辑并引用了list_file_data中列出的文件(并添加了一些错误处理)。 如果你想浏览目录,我建议使用os.walk()( ...
  • 使用Set#size() System.out.println(hashtags.size()); Use Set#size() System.out.println(hashtags.size());
  • 关闭可以做到这一点: var uniqueNum = (function(){ var num = 0; return function(){ return num++; } }()); uniqueNum(); // 0 uniqueNum(); // 1 如其他 答案所示 ,“静态”变量也有效。 A closure can do that: var uniqueNum = (function(){ var num = 0; return func ...
  • 看到 solution.push(str[i]); 你只是推动最初的'#'角色 - 你想推动整个单词。 假设标签由空格分隔,你可以尝试这样的代替: const solution = str.split(' ').filter(word => word.startsWith('#')); See solution.push(str[i]); You're only pushing the initial '#' character - you want to push the whole word. Assu ...
  • 据我所知,底层的Twitter API实际上并没有为你解析主题标签,python-twitter包装器也没有。 ( 当然,我看起来不太努力;) ) 幸运的是,你自己很容易做到这一点。 Hashtags是以'#'开头的单词; 因此,我们向Python询问以“#”开头的每个单词,并删除“#”(即,从第二个字符到单词的结尾),其中单词来自将文本拆分为单词。 它在Python中比在英语中更清晰: hashtags = [word[1:] for word in i.text.split() if word.sta ...
  • 您可以使用正则表达式从EditText获取所有主题标签: import java.util.regex.Matcher; import java.util.regex.Pattern; String text = editText.getText().toString(); String regexPattern = "(#\\w+)"; Pattern p = Pattern.compile(regexPattern); Matcher m = p.matcher(text); while (m.fi ...
  • 你说i['entities']['hashtags']是一个dict list ,所以行: hashtags.append(i['entities']['hashtags']['text']) 正在尝试使用字符串索引列表。 这没有任何意义 ,并导致错误。 我认为你最好把它分成几步,首先得到所有'hashtag'词典: hashtags = [] for i in data: if 'entities' in i: hashtags.extend(i['entities']['has ...
  • print_r没有按照你的想法去做。 你想迭代数组来使用foreach 。 演示: $array = array("#conversation", "#new"); $t=array_count_values($array); foreach($t as $hash => $count) { echo $hash . "\n"; } 输出: #会话 #新 演示: https : //eval.in/501267 The print_r doesn't do what you are thinkin ...
  • 浏览器正确地将标签保存到历史记录中。 只需在此问题页面添加标签#1,按Enter键,将其更改为#2,按Enter键,将其更改为#3,按Enter键。 现在单击后退按钮,您将看到从#3到#2的哈希变化。 我建议仅在链接点击时更改散列本身,并对页面散列更改和页面加载事件做出反应。 function react() { var hash = window.location.hash.replace("#", ""); loadXMLDoc(hash + ".txt"); }; document. ...
  • 另一种确保获取值始终是最后一次计数(最高值)作为列中的计数器的方法是这样的:( 代码中的注释) 当你说A列中的值可以手动修改时,我有了这个想法......在这种情况下,它是避免可能重复的唯一方法(它不会阻止使用未使用的值...(但这可以实现)如有必要) function OnForm(){ var sh = SpreadsheetApp.getActiveSheet() var startcell = sh.getRange('A1').getValue(); if(! startcell){sh.getR ...

相关文章

更多

最新问答

更多
  • 获取MVC 4使用的DisplayMode后缀(Get the DisplayMode Suffix being used by MVC 4)
  • 如何通过引用返回对象?(How is returning an object by reference possible?)
  • 矩阵如何存储在内存中?(How are matrices stored in memory?)
  • 每个请求的Java新会话?(Java New Session For Each Request?)
  • css:浮动div中重叠的标题h1(css: overlapping headlines h1 in floated divs)
  • 无论图像如何,Caffe预测同一类(Caffe predicts same class regardless of image)
  • xcode语法颜色编码解释?(xcode syntax color coding explained?)
  • 在Access 2010 Runtime中使用Office 2000校对工具(Use Office 2000 proofing tools in Access 2010 Runtime)
  • 从单独的Web主机将图像传输到服务器上(Getting images onto server from separate web host)
  • 从旧版本复制文件并保留它们(旧/新版本)(Copy a file from old revision and keep both of them (old / new revision))
  • 西安哪有PLC可控制编程的培训
  • 在Entity Framework中选择基类(Select base class in Entity Framework)
  • 在Android中出现错误“数据集和渲染器应该不为null,并且应该具有相同数量的系列”(Error “Dataset and renderer should be not null and should have the same number of series” in Android)
  • 电脑二级VF有什么用
  • Datamapper Ruby如何添加Hook方法(Datamapper Ruby How to add Hook Method)
  • 金华英语角.
  • 手机软件如何制作
  • 用于Android webview中图像保存的上下文菜单(Context Menu for Image Saving in an Android webview)
  • 注意:未定义的偏移量:PHP(Notice: Undefined offset: PHP)
  • 如何读R中的大数据集[复制](How to read large dataset in R [duplicate])
  • Unity 5 Heighmap与地形宽度/地形长度的分辨率关系?(Unity 5 Heighmap Resolution relationship to terrain width / terrain length?)
  • 如何通知PipedOutputStream线程写入最后一个字节的PipedInputStream线程?(How to notify PipedInputStream thread that PipedOutputStream thread has written last byte?)
  • python的访问器方法有哪些
  • DeviceNetworkInformation:哪个是哪个?(DeviceNetworkInformation: Which is which?)
  • 在Ruby中对组合进行排序(Sorting a combination in Ruby)
  • 网站开发的流程?
  • 使用Zend Framework 2中的JOIN sql检索数据(Retrieve data using JOIN sql in Zend Framework 2)
  • 条带格式类型格式模式编号无法正常工作(Stripes format type format pattern number not working properly)
  • 透明度错误IE11(Transparency bug IE11)
  • linux的基本操作命令。。。