出处:http://dusted.codes/demystifying-aspnet-mvc-5-error-pages-and-error-logging Error pages and error logging, both so elementary and yet so complex in ASP.NET MVC. Perhaps complex is not entirely true, but it is certainly not very straight forward fo…
Articles and post about silent install for Basic MSI, InstallScript, InstallScript MSI: Silent-mode installations HOWTO:InstallShield中如何制作静默安装包-IntallScript或InstallScript MSI工程类型 ______________________________________________________________________…
http://kazoo.readthedocs.org/en/latest/basic_usage.html Basic Usage Connection Handling To begin using Kazoo, a KazooClient object must be created and a connection established: from kazoo.client import KazooClient zk = KazooClient(hosts='127.0.0.1:21…
Basic Concepts of Block Media Recovery Whenever block corruption has been automatically detected, you can perform block media recovery manually with the RECOVER ... BLOCK command. By default, RMAN first searches for good blocks in the real-time query…
Acknowledgments I would like to thank Jacob Kjome for reviewing early drafts of this document. His comments helped to clarify several important points. Jake also keeps reminding us on the log4j-dev mailing list that the child-parent delegation model…
# Copyright 2001-2016 by Vinay Sajip. All Rights Reserved. # # Permission to use, copy, modify, and distribute this software and its # documentation for any purpose and without fee is hereby granted, # provided that the above copyright notice appear…
You might be wondering where the login form came from when you were prompted to log in, since we made no mention of any HTML files or JSPs. In fact, since we didn’t explicitly set a URL for the login page, Spring Security generates one automatically,…
Serilog.Extensions.Logging.File This package makes it a one-liner - loggerFactory.AddFile() - to configure top-quality file logging for ASP.NET Core apps. Text or JSON file output Files roll over on date; capped file size Request ids and event ids in…
logging模块功能比较多,但一般情况下使用其简单功能就已经足够了. 最简单的用法如下: import logging logging.baiscConfig(level=logging.DEBUG) logging.debug('message') logging.critical('message') logging.warning('%s before you %s', 'Look', 'leap!') logging.warning('{} before you {}'.format(…
After learning the basic opreation of Redis,we should take some time to summarize the usage. And I wrote my first edition RedisHelper.Here is the code: The Interface IRedis: public interface IRedis { ITransaction GetTransaction(, bool isRead = false)…
Data play an important part in our project,how can we ensure correctness of the data and prevent the data from error.In relational database, we are famillar with the usage of transaction. begin opreations commit/rollback But there are some difference…
This post is mainly about the publishment and subscription in Redis.I think you may subscribe some offiial accounts on wechat,and when the authors published something new to their accounts,you will get them in your wechat.The instance can make you un…
Redis's List is different from C#'s List,but similar with C#'s LinkedList.Sometimes I confuse with them.I expect that you won't mix them and have a clear mind of them. There are 17 commands we can use in List. Push and pop are the base opreation of t…