2013-02-23 01:50:29 +01:00
|
|
|
From 66bf9228164154e0da57d1a8dbabc6837b2da2f8 Mon Sep 17 00:00:00 2001
|
2013-01-19 09:22:07 +01:00
|
|
|
From: Mike Primm <mike@primmhome.com>
|
|
|
|
Date: Wed, 16 Jan 2013 15:27:22 -0600
|
|
|
|
Subject: [PATCH] Alternate, sync-free-but-safe chunk reference cache
|
|
|
|
|
|
|
|
---
|
|
|
|
src/main/java/net/minecraft/server/World.java | 14 ++++++--------
|
|
|
|
1 file changed, 6 insertions(+), 8 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
2013-02-23 01:50:29 +01:00
|
|
|
index b1dd29e..41f4f31 100644
|
2013-01-19 09:22:07 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
2013-01-27 23:46:19 +01:00
|
|
|
@@ -297,15 +297,13 @@ public abstract class World implements IBlockAccess {
|
2013-01-19 09:22:07 +01:00
|
|
|
|
|
|
|
// CraftBukkit start
|
|
|
|
public Chunk getChunkAt(int i, int j) {
|
|
|
|
- Chunk result = null;
|
|
|
|
- synchronized (this.chunkLock) {
|
|
|
|
- if (this.lastChunkAccessed == null || this.lastXAccessed != i || this.lastZAccessed != j) {
|
|
|
|
- this.lastChunkAccessed = this.chunkProvider.getOrCreateChunk(i, j);
|
|
|
|
- this.lastXAccessed = i;
|
|
|
|
- this.lastZAccessed = j;
|
|
|
|
- }
|
|
|
|
- result = this.lastChunkAccessed;
|
|
|
|
+ //synchronized (this.chunkLock) {
|
|
|
|
+ Chunk result = this.lastChunkAccessed; // Exploit fact that read is atomic
|
|
|
|
+ if (result == null || result.x != i || result.z != j) {
|
|
|
|
+ result = this.chunkProvider.getOrCreateChunk(i, j);
|
|
|
|
+ this.lastChunkAccessed = result; // Exploit fact that write is atomic
|
|
|
|
}
|
|
|
|
+ //}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
--
|
|
|
|
1.8.1-rc2
|
|
|
|
|