Profile是针对每个帐户的数据存储,比如一个电子商务网站的用户购物车数据。
“用户配置文件”是Profile这个词的直接翻译,其实没有文件的意思,默认塌饥存储在数据库中,不用自己管理文件。
Profile是HttpContext类的一个属性,是ProfileBase类,继承自SettingsBase类。所谓Provider,是你可以定义Profile如何存储,默认是存储在LocalServer数据库中,需要网站重启动不丢失数据,所以不能存在内存中。
扩展资料:Profile功能
基本命令:
profile on : 开启profile
profile off: 关闭profile
profile clear: 清空历史数据
profile viewer: 查看团渗返profile 结果
示例1:
引自Matlab 中帮助文档:
profile on % 开喊穗启 profile
plot(magic(35)) % 绘制magic矩阵
profile viewer % 查看profile结果
p = profile('info')
profsave(p,'profile_results') % 保存profile 结果
实例2:
使用profile分析分析cpu使用情况
可以使用profile和cProfile对python程序进行分析,这里主要记录下cProfile的使用,profile参考cProfile即可。
假设有如下代码需要进行分析(cProfileTest1.py):
#! /usr/bin/env python
#-*- coding:utf-8 -*-
def foo():
sum = 0
for i in range(100):
sum += i
return sum
if __name__ == "__main__" :
foo()
计算机中常用的 Profile 该如何理解?我认为 Profile 即可作名词又可作动词。伍李
1。profile作为名词时常用的意思:
profile 本身意思是剖面, 侧面, 外形, 轮廓。但现在常用这个字时,它的腔州迟含义更进一层
a.简介,档案
my profile 表示我的个人信息。
For example, if you are writing an eCommerce website, "retrieve user's profile" means 查看用户的档案资料。get user's name, age, shoping history, interests, etc. So profile can be understood as "outline of a person's characteristics".
company profile: 公司概况,公司简介
个人简历用resume, 个人资料用profile
b.profile 也作图表的意思:
A formal summary or analysis of data, often in the form of a graph or table, representing distinctive features or characteristics(引自金山词霸),一概图:对数据的正式概括或分析,经常用曲线图或图迹做表的形式,其表现出事物的明显的特点或特色。
例如:side effect profile可译为:"不良反应分布图"或者"不良反应范围"
2.Profile 作为动词时
when profile is used as a verb, it means create the outline of something, or summarize characterstics of it. "Profile a software program" means finding out the characterstics of the program, like how much memory it takes, how much time spent in each method, how often a method is called, etc.
profile:需要运行的运动包络号。例如你设了两宏隐团个包络,0号包络位移为10CM,1号包络位移为20CM。如果你想让电机先走10CM,再走20CM,那么在PTO—RUN子程序中profile参数中填0,下一个蔽橘运行子程序中填1.你想运行那个包络就填那个包络号。
所有的参数都在向导子程序中有中文或英文的参数携哗说明。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)