etcd/storage
Gyu-Ho Lee 84d777305d storage: use only one mutex for store struct
Mutex is a variable, which means there needs to be only one mutex
value per scope. We don't need a separate mutex inside store struct,
**if we assume that `TxnPut` and `TxnRange` are called ONLY ONCE
per transaction (between `TxnBegin` and `TxnEnd`)**, as documented.
2015-12-21 11:42:40 -08:00
..
2015-11-17 20:54:10 -08:00
2015-11-03 15:58:34 -08:00
2015-11-04 13:01:52 -08:00