Commit Graph

4 Commits

Author SHA1 Message Date
Avi Dessauer
af41ab40e1 Delete trailing whitespace (#42) 2019-08-21 13:03:31 +03:00
alexwl
31267d352e Code cleanup: fix warnings 2019-05-17 18:43:42 +03:00
alexwl
cac568f016 Add support for GHC 8.6.4 2019-03-14 22:40:27 +03:00
alexwl
0f84e1f004 Optimize memory usage of haskell-code-server
This commit adds an option to create an on-disk key-value store that contains all the data from PackageInfo of each indexed package in a queriable form. The store can be used by haskell-code-server to respond to API requests. The main benefit of using the store, compared to deserializing and loading PackageInfo of each package into memory, is reduced memory usage (approximately 7 times for a set of Haskell packages).

The key-value store on disk consists of two files: 'index' and 'values'. 'index' is a small file that contains a map from strings to locations in a 'values' file. 'index' file should be deserialized and loaded into memory. 'values' is a large file that contains serialized Haskell data structures. 'values' file can be either read directly (without deserializing) or memory-mapped.
2019-01-23 17:18:29 +03:00