forked from pinpoint-apm/pinpoint
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[pinpoint-apm#8952] Replace guava cache with caffeine cache
- Loading branch information
Showing
25 changed files
with
166 additions
and
167 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
profiler/src/main/java/com/navercorp/pinpoint/profiler/cache/IdAllocator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
package com.navercorp.pinpoint.profiler.cache; | ||
|
||
import com.navercorp.pinpoint.common.util.BytesUtils; | ||
|
||
import java.util.concurrent.atomic.AtomicInteger; | ||
|
||
public interface IdAllocator { | ||
int allocate(); | ||
|
||
enum ID_TYPE { | ||
BYPASS, ZIGZAG; | ||
} | ||
|
||
class ZigZagAllocator implements IdAllocator { | ||
private final AtomicInteger idGen; | ||
|
||
public ZigZagAllocator() { | ||
this(1); | ||
} | ||
|
||
public ZigZagAllocator(int startValue) { | ||
this.idGen = new AtomicInteger(startValue); | ||
} | ||
|
||
@Override | ||
public int allocate() { | ||
int id = this.idGen.getAndIncrement(); | ||
return BytesUtils.zigzagToInt(id); | ||
} | ||
} | ||
|
||
class BypassAllocator implements IdAllocator { | ||
private final AtomicInteger idGen; | ||
|
||
public BypassAllocator() { | ||
this(1); | ||
} | ||
|
||
public BypassAllocator(int startValue) { | ||
this.idGen = new AtomicInteger(startValue); | ||
} | ||
|
||
@Override | ||
public int allocate() { | ||
return this.idGen.getAndIncrement(); | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.