danieleteti / delphimvcframework

DMVCFramework (for short) is a popular and powerful framework for WEB API in Delphi. Supports RESTful and JSON-RPC WEB APIs development.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Redis sample fix to 3.2.2 - nitrogen

Microcom-Bjarne opened this issue · comments

MVC.Config['redis_connection_string'] := '127.0.0.1:6379';

MVC is readonly :-) so change the line to
Config['redis_connection_string'] := '127.0.0.1:6379';

and for the example to work another line is needed.
Config['redis_connection_key'] := '';
otherwise an exception is raised due to missing key from the cachecontroller.

Thank you