From 8d8a05a8420d26324a5f7ac512b45720c55165da Mon Sep 17 00:00:00 2001 From: Marty Schoch Date: Fri, 14 Aug 2015 16:27:00 -0400 Subject: [PATCH] fix more issues --- index/firestorm/firestorm.md | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/index/firestorm/firestorm.md b/index/firestorm/firestorm.md index db3005fc..2fea642f 100644 --- a/index/firestorm/firestorm.md +++ b/index/firestorm/firestorm.md @@ -84,16 +84,15 @@ The Dictionary becomes a best effort data element. In kill-9 scenarios it could The following pseudo-structure will be used to explain changes to the internal state. Keep in mind the datatypes shows represent the logical strcture required for correct behavior. The actual implementation may be different to achieve performance goals. -indexState { - docCount uint64 - fieldCache map[string]uint16 - nextDocNumber uint64 - - docIdNumberMutex sync.RWMutex // for protecting fields below - maxReadDocNumber uint64 - inFlightDocIds map[string]uint64 - deletedDocIdNumbers [][]byte -} + indexState { + docCount uint64 + fieldCache map[string]uint16 + nextDocNumber uint64 + docIdNumberMutex sync.RWMutex // for protecting fields below + maxReadDocNumber uint64 + inFlightDocIds map[string]uint64 + deletedDocIdNumbers [][]byte + } ### Operation