2015-11-14 147 views

回答

1

的.metadata是工作區設置的存儲位置。所以如果你刪除它,那麼你的所有偏好,緩存,工作區中的項目等都將丟失。

(擴大早先的答案)。

是的,繼續和刪除.metadata。一旦你重新導入你的項目,提供你的目標,並允許所有的索引器運行,你可能會發現你的.metadata已經重新增長到相同的大小。

一個不會導致完全再生的幾件事情是,你將被拋棄每個文件的本地歷史。這可能會節省幾個百分點。

在我目前的工作空間之一,在.metadata分解大致是這樣的(只顯示大量使用的文件夾):

.metadata <- 524 MB 
    .plugins <- 523 MB (this is where individual plug-ins save there persisted states) 
    org.eclipse.pde.core/.bundle_pool <- 335 MB (these are the plug-ins that are part of my target platform) 
    org.eclipse.jdt.core <- 67 MB (this is the indexes of my Java files) 
    org.eclipse.epp.logging.aeri.ui <- 30 MB (this is the Automatic Error reporting local cache of remote database) 
    org.eclipse.core.resources/.history <- 12.4 MB (this is the local history) 

可能要問不同的問題有用的(例如,爲什麼富/酒吧工作區/ .metadata中的路徑佔用了太多空間),因爲它可能是一個簡單的配置更改對磁盤使用率有很大影響。

+0

它看起來不正確,這將是1GB雖然。不應該用1024mb來表示編輯器的顏色是藍色的。 –

+0

但是,它可能需要1GB來配置您的目標平臺,保存所有代碼的Dom緩存等。 –

相關問題