head 1.2; access; symbols pkgsrc-2022Q3:1.1.0.20 pkgsrc-2022Q3-base:1.1 pkgsrc-2022Q2:1.1.0.18 pkgsrc-2022Q2-base:1.1 pkgsrc-2022Q1:1.1.0.16 pkgsrc-2022Q1-base:1.1 pkgsrc-2021Q4:1.1.0.14 pkgsrc-2021Q4-base:1.1 pkgsrc-2021Q3:1.1.0.12 pkgsrc-2021Q3-base:1.1 pkgsrc-2021Q2:1.1.0.10 pkgsrc-2021Q2-base:1.1 pkgsrc-2021Q1:1.1.0.8 pkgsrc-2021Q1-base:1.1 pkgsrc-2020Q4:1.1.0.6 pkgsrc-2020Q4-base:1.1 pkgsrc-2020Q3:1.1.0.4 pkgsrc-2020Q3-base:1.1 pkgsrc-2020Q2:1.1.0.2 pkgsrc-2020Q2-base:1.1; locks; strict; comment @// @; 1.2 date 2022.12.21.15.21.28; author wiz; state dead; branches; next 1.1; commitid mXRLBpkP9Z4Jcr6E; 1.1 date 2020.05.22.01.17.25; author joerg; state Exp; branches; next ; commitid J48Jk0H6exM3Ra9C; desc @@ 1.2 log @cppcms: update to 1.2.1. Major changes in this version: Redesigned applications pool and its API, now it wouldn't create more synchronous applications than threads available. New non-blocking I/O mode On-the-fly input content processing support Improved url-dispatching for better support of RESTful services Improved plugin support Independent of context use of cache and session interfaces Support of non-cookies based session handling Integration of session handling with 3rd part technologies: PHP, Java Servlet, Aps.Net and so on and contributed modules. Major performance and memory use improvements. New <% filter ... %> block specifying default escape filter. Headers and Source separation by templates compiler. Special thanks to Lee Elenbaas for the major contribution. @ text @$NetBSD: patch-src_cache__storage.cpp,v 1.1 2020/05/22 01:17:25 joerg Exp $ --- src/cache_storage.cpp.orig 2020-05-21 23:28:18.301370981 +0000 +++ src/cache_storage.cpp @@@@ -25,13 +25,13 @@@@ #endif #include +#include #include #include #include #include -#include namespace boost = cppcms_boost; namespace cppcms { @@@@ -137,10 +137,10 @@@@ class mem_cache : public base_cache { typedef std::basic_string,allocator > string_type; - typedef boost::unordered_map< + typedef std::unordered_map< string_type, container, - boost::hash, + std::hash, std::equal_to, typename allocator::template rebind >::other > map_type; @ 1.1 log @Use std::unsorted_map to avoid issues with newer boost @ text @d1 1 a1 1 $NetBSD$ @