소스 검색

Configure WindowCache settings to use in JGit CLI

Set the same defaults as in EGit.
Use mmap to map git packfiles into memory.

Change-Id: I7997b9123448a762192d7eeb55e01432549fba98
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
tags/v5.0.0.201805151920-m7
Matthias Sohn 6 년 전
부모
커밋
e6375445d1
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 10
    0
      org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Main.java

+ 10
- 0
org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/Main.java 파일 보기

@@ -71,6 +71,7 @@ import org.eclipse.jgit.lib.RepositoryBuilder;
import org.eclipse.jgit.pgm.internal.CLIText;
import org.eclipse.jgit.pgm.opt.CmdLineParser;
import org.eclipse.jgit.pgm.opt.SubcommandHandler;
import org.eclipse.jgit.storage.file.WindowCacheConfig;
import org.eclipse.jgit.transport.HttpTransport;
import org.eclipse.jgit.transport.http.apache.HttpClientConnectionFactory;
import org.eclipse.jgit.util.CachedAuthenticator;
@@ -105,10 +106,19 @@ public class Main {

private ExecutorService gcExecutor;

private static final int MB = 1024 * 1024;

/**
* <p>Constructor for Main.</p>
*/
public Main() {
final WindowCacheConfig c = new WindowCacheConfig();
c.setPackedGitMMAP(true);
c.setPackedGitWindowSize(8 * 1024);
c.setPackedGitLimit(10 * MB);
c.setDeltaBaseCacheLimit(10 * MB);
c.setStreamFileThreshold(50 * MB);
c.install();
HttpTransport.setConnectionFactory(new HttpClientConnectionFactory());
BuiltinLFS.register();
gcExecutor = Executors.newSingleThreadExecutor(new ThreadFactory() {

Loading…
취소
저장