前端时间在做动态目标监控,应用程序需要考虑大数据量和多用户并发的操作,系统的性能是解决方案实施性的重要度量。这里简单的记录下Windows中性能监视查看和简单分析。 一般操作系统性能主要涉及到的问题主要有:处理器使用情况、内存占有量、磁盘I/0操作以及网络流量等。 查看Windows性能情况,大部分 ...
错误信息: ERROR 1418 (HY000): This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *mi ...
分类:
数据库 时间:
2020-02-10 18:00:37
阅读次数:
68
#include <stdio.h> #include <unistd.h> #include <pthread.h> void increase(); int sum = 0; pthread_mutex_t mutex; int main() { // init mutex pthread_mu ...
分类:
其他好文 时间:
2020-02-08 23:13:53
阅读次数:
136
在对组件进行注册时,只注册了EditText,却忘记了Button,导致程序一直闪退 输入信息 点击添加 成功跳转页面,并将数据传递 User.java package com.example.register; import android.os.Parcel; import android.os ...
分类:
其他好文 时间:
2020-02-08 00:42:13
阅读次数:
95
Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. Example 1: Input: 121Output: true ...
分类:
其他好文 时间:
2020-02-06 20:03:07
阅读次数:
83
启动两个端口为了80跳转 443 <Connector connectionTimeout="20000" port="80" protocol="HTTP/1.1" redirectPort="443"/> <Connector port="443" protocol="HTTP/1.1" SSL ...
分类:
Web程序 时间:
2020-02-04 23:51:14
阅读次数:
220
配置准备 "Sublime Text 3" "MinGW w64" (如果你想用MinGW,请参考网上其他教程,但我更推荐使用MinGW w64) 安装Sublime Text 3 没什么好更改的 一路上都点Next/Install/Finish即可 安装MinGW w64 解压下载后的mingw ...
分类:
编程语言 时间:
2020-02-02 21:22:04
阅读次数:
114
show status like 'Threads%'; Threads_cached 5 (当前线程缓存中有多少空闲线程)Threads_connected 127 (当前连接的线程)Threads_created 7295 (从数据库启动,已经创建过的线程)Threads_running 1 ( ...
分类:
其他好文 时间:
2020-01-31 10:27:05
阅读次数:
74
1、题目 9. Palindrome Number Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. Example ...
分类:
其他好文 时间:
2020-01-29 17:47:22
阅读次数:
55