SAP Analytics Cloud部署在SAP Cloud Platform的Neo或者CloudFoundry环境上: SAP官方帮助文档: https://help.sap.com/viewer/00f68c2e08b941f081002fd3691d86a7/release/en US/1 ...
分类:
其他好文 时间:
2020-03-29 12:56:56
阅读次数:
64
Gin is a web framework written in Go (Golang). It features a martini-like API with performance that is up to 40 times faster thanks to httprouter. git ...
分类:
其他好文 时间:
2020-03-28 23:49:11
阅读次数:
135
阅读 817 维基百科中对伪共享的定义如下: In computer science, false sharing is a performance-degrading usage pattern that can arise in systems with distributed, coheren ...
分类:
编程语言 时间:
2020-03-26 19:58:52
阅读次数:
92
In this lesson we will see how to measure the used JS heap size in chrome. This can be used for various needs from performance debugging to production ...
分类:
Web程序 时间:
2020-03-26 19:50:09
阅读次数:
102
Sometimes you'd like to measure how two implementations compare in regards to run time. In this lesson you will learn how to quickly do this using Con ...
分类:
Web程序 时间:
2020-03-26 19:44:25
阅读次数:
87
1.查询数据库 查看有哪些数据库: 1 SHOW DATABASES; information_schema:数据字典 mysql:控制和管理信息 performance_schema:性能字典 sys:系统数据库 查看数据库信息: SHOW CREATE DATABASE 数据库名称; 1 SHO ...
分类:
数据库 时间:
2020-03-25 23:24:19
阅读次数:
87
--查询编译以来cpu耗时总量最多的前50条(Total_woker_time)SELECTTOP50total_worker_time/1000AS[总消耗CPU时间(ms)],execution_count[运行次数],qs.total_worker_time/qs.execution_count/1000AS[平均消耗CPU时间(ms)],last_execution_timeAS[最后一次
分类:
数据库 时间:
2020-03-24 10:39:07
阅读次数:
82
IO是sqlserver最重要的资源,在生产环境下数据库的sqlserver服务启动后一个星期,就可以通过dmv来分析优化。MSSQLServer提供了一些动态管理视图和函数供我们分析磁盘I/O性能。一.按照物理读的页面数排序前50名SELECTTOP50qs.total_physical_reads,qs.execution_count,qs.total_physical_reads/qs.ex
分类:
数据库 时间:
2020-03-24 10:37:08
阅读次数:
87
在指定的文件中下载文件 ‘nginx.service’ 在网上找包 nginx.service内容如下 nginx.service 内容如下 [Unit] Description=nginx - high performance web server Documentation=http://ngi ...
分类:
其他好文 时间:
2020-03-23 22:05:37
阅读次数:
110
vim /etc/my.cnf +10 i log-bin=mysql-bin binlog-ignore-db=information_schema binlog-ignore-db=mysql binlog-ignore-db=performance_schema server-id= 1 vi ...
分类:
数据库 时间:
2020-03-20 17:16:34
阅读次数:
89