If you can fit your entire database in memory, you may manually configure RAPCache to use an in-memory database (IMDB).
Switch from the relaxed durability disk-resident database (RDDB) to the IMDB:
-- Create 4 GB cache for in-memory storage
sp_cacheconfig rapTAQcache, "4.5G", inmemory_storage
go
-- Create 4 GB cache device for rapTAQ data
DISK INIT name = "rapTAQdata",
          physname = "rapTAQcache",
          size = "4G",
          type = "inmemory"
go
-- Create 0.5 GB cache device for rapTAQ log
DISK INIT name = "rapTAQlog",
          physname = "rapTAQcache",
          size = "0.5G",
          type = "inmemory"
go
-- Create rapTAQIMDDB database using existing rapTAQ model database
create inmemory database rapTAQIMDB
    on rapTAQdata = ā4gā
    log on rapTAQlog  = ā0.5gā
with DURABILITY = NO_RECOVERY
go