浏览代码

Merge pull request #668 from dolmen/patch-1

Dancer: use JSON::XS for faster serialization
Mike Smith 11 年之前
父节点
当前提交
4c668432be
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      dancer/app.pl

+ 1 - 0
dancer/app.pl

@@ -4,6 +4,7 @@ use warnings;
 
 use Dancer ':syntax';
 use DBI;
+use JSON::XS;  # Ensure that the fast implementation of the serializer is installed
 
 set serializer => 'JSON';