zoukankan      html  css  js  c++  java
  • IDEA

    在64位Linux系统上使用IDEA时遇到如下问题,启动时警告信息
    External file changes sync may be slow Project files cannot be watched (are they under network mount?)
    命令行启动时警告信息

    api.vfs.impl.local.FileWatcher - Project files cannot be watched (are they under network mount?)

    此 时如果文件在外部被修改,IDEA不能及时检测到文件被修改,导致当前编辑的文档与实际不符。问题原因是启动脚本目录下有两个fsnotifier文件, 一个后缀为64,表示64位系统使用。IDEA默认只使用fsnotifier,如果系统是64位,则可能出现上面的错误,解决方法是尝试将原 fsnotifier重命名(如加后缀32),然后将fsnotifier64重命名为fsnotifier,重启IDEA。

    参考:http://blog.jetbrains.com/idea/2010/04/native-file-system-watcher-for-linux/
  • 相关阅读:
    python 基于gevent协程实现socket并发
    python asyncio
    python 池 协程
    python
    python 守护进程
    python 线程 threading模块
    python 安装Django失败处理
    python 队列
    python 锁
    继承,抽象类,多态,封装
  • 原文地址:https://www.cnblogs.com/rainey-forrest/p/4775303.html
Copyright © 2011-2022 走看看