Redis is an in-memory database that persists on disk. The data model is key-value, but many different kind of values are supported: Strings, Lists, Sets, Sorted Sets, Hashes
It is common practice to place VS projects under C:\Users\JonSnow\Documents\Visual Studio 2013\Projects\
However the solution fails to build with the following error:
LINK : fatal error LNK1181: cannot open input file 'Studio.obj' [C:\Users\JonSnow\Documents\Visual Studio 2013\Projects\redis-3.0\src\Win32_Interop\Win32_Interop.vcxproj]
Took me hours to figure out that the issue was the file path of the solution. Moving the solution to a file path with no spaces resolved the issue. To avoid others living through the same pain please fix the solution.
It is common practice to place VS projects under C:\Users\JonSnow\Documents\Visual Studio 2013\Projects\ However the solution fails to build with the following error: LINK : fatal error LNK1181: cannot open input file 'Studio.obj' [C:\Users\JonSnow\Documents\Visual Studio 2013\Projects\redis-3.0\src\Win32_Interop\Win32_Interop.vcxproj]
Took me hours to figure out that the issue was the file path of the solution. Moving the solution to a file path with no spaces resolved the issue. To avoid others living through the same pain please fix the solution.