Adding lru to memory driver, not wired to command line opts

This commit is contained in:
Frederick F. Kautz IV
2015-04-15 12:35:23 -07:00
parent b464ddbf31
commit 59a81a73c6
7 changed files with 273 additions and 57 deletions

View File

@@ -136,7 +136,7 @@ func getDriverChannels(driverType DriverType) (ctrlChans []chan<- string, status
switch {
case driverType == Memory:
{
ctrlChan, statusChan, driver = memory.Start()
ctrlChan, statusChan, driver = memory.Start(1000)
ctrlChans = append(ctrlChans, ctrlChan)
statusChans = append(statusChans, statusChan)
}