由买买提看人间百态

topics

全部话题 - 话题: persistant
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
g*****g
发帖数: 34805
1
来自主题: Programming版 - J2EE究竟指什么?
J2EE (it's called JEE now) is a bunch of specs that define enterprise
programming model. Typical enterprise application needs are:
Security, scalability, transaction, remoting, persistency, messaging etc..
J2EE application server provide these capabilities. JEE application is
usually 3 tier, presentation, business, persistence.
JSP, Servlet are two specs for web presentation. Struts is a framework
built on top of them. MVC is pattern Struts and most other web frameworks
implemented.
So yes, you
g*****g
发帖数: 34805
2
来自主题: Programming版 - J2EE究竟指什么?
Technically, persistency is a layer on server side
between business logic and DB. Persistency provides
DAO service, you can have different underlying implementation,
like JDBC or ORM.
b***y
发帖数: 2799
3
来自主题: Programming版 - [合集] C++ question -- how to save objects
☆─────────────────────────────────────☆
system (系统管理员-困惑中...) 于 (Wed Aug 31 19:25:53 2005) 提到:
Is there any simple way or lib to save/restore C++ objects to/from persistant
storage? Like the java Object Serialization ...
Thanks.
☆─────────────────────────────────────☆
lzl (李作乐) 于 (Wed Aug 31 20:29:59 2005) 提到:
for MFC, it's simple.
don't know others

persistant
☆─────────────────────────────────────☆
system (系统管理员-困惑中...) 于 (Wed Aug 31 23:08:56 2005) 提到:
not MFC a. :(
C++ does
t****t
发帖数: 6806
4
来自主题: Programming版 - 看道c++题: brianbench
i think you are wrong here.
the lifetime of a temporary is ended when expression generating the temp is
fully-evaluated, that's usually correct; except in two cases: 1. temp appear
s in the initializer of a declarator, then temp persists until initializatio
n completes. 2. temp is bind to a (const) reference; then temp persists unti
l the reference is out of bound. see 12.2, clause 3-5.

reference,
r*****3
发帖数: 143
5
中文名: Python标准库示例
原名: Python Standard Library by Example
作者: Doug Hellmann
图书分类: 软件
资源格式: PDF
版本: 英文文字版/更新EPUB版本
出版社: Addison-Wesley Professional
书号: 9780321767349
发行时间: 2011年
地区: 美国
语言: 英文
简介:
内容介绍:
You’ll find practical code for working with text, data types, algorithms,
math, file systems, networking, the Internet, XML, email, cryptography,
concurrency, runtime and language services, and much more. Each section
fully covers one module, and links to valuable additional resources, making
this bo... 阅读全帖
s***o
发帖数: 6934
6
very much depending on the data you are storing. There are needs for data
store in many layers: application layer serving stores, data warehouse for
your BI, billing/financial data.
* serving stores are usually nosql solutions or mysql/postgresql instances
depending on your need.
- there will be data that you only need key -> value lookup, use stores like
cassandra/riak/memcache/mongo depending on your requirements of access
patterns. cassandra requires thrift, which is painful to some. riak sup... 阅读全帖
a****i
发帖数: 1182
7
来自主题: Programming版 - 春运火车票2个方案比较
弟,你没看明白我在说啥才是
一楼分析买票是这样:
查询->订票->multicast log->支付->Transaction log
查询->订票->multicast log->支付失败->退票->multicast log
我的意思就是这个基础上,做两重
查询->订票->multicast log(memory)->tx开始->支付->multicast log(persist)->Tx
结束
查询->订票->multicast log(memroy)->tx开始->支付失败->退票->multicast log回滚
(memory)->tx结束
那个multicast log在整个买票过程成功之前就不用persist,就这个区别
n****1
发帖数: 1136
8
你到底要做IPC还是data persistence? 保存为文件当然可以同时解决两个问题,但这
就好象同时用办公桌干活与吃饭一样, adhoc不专业。 个人项目没问题, 集团项目就
该被批。
data persistence不是本来就该放文件里面么? 难道你的IPC通信需要上G? 如果是的
话你的架构设计也太离谱了。
d*******r
发帖数: 3299
9
来自主题: Programming版 - MongoDB力压Cassandra
我是 PyMongo+MongoDB 在用,项目规模还比较小。随便存点东西,或者做个
persistent 的 msg queue,让不同的servers/processes去poll, 还有把各种乱七八糟
存在不同server的logs扔到mongo里面。估计别人会用 kafka做 persistent msg queue
, 用 Cassandra 做 logs, 我项目小,存储, queuing, log 就都用mongo了,这样别人
用的时候,看看 Mongo 里面的 JSONs 就啥都明白了。
推荐一个 GUI: http://robomongo.org/
其他部门和测试的人用着也方便。
PyMongo里面可以直接把 Python dictionary (可嵌入原生list) 当成 JSON 扔进去存
,还是比较方便。就是 Mongo 官方例子都是 JavaScript, 看过后,在Python里实现可
能还要简单看看 PyMongo里面的代码或者注释。
还有,create_index(keys_for_index) or ensure_index(keys_for_inde... 阅读全帖
n****1
发帖数: 1136
10
俺一直觉得logic layer与persistence layer之间严格分开的做法, 甚至放在不同的进
程里面, 这样overhead太大. 所以一直对PL/SQL procedure programming很有兴趣, 可
惜这样做会被Oracle vendor locking.
俺个人对MapReduce的理解就是分布式的PL/SQL procedure, mapper/reducer是把业务
逻辑植入到persistence layer里面以提高性能. 这也应该是Cassandra和Hbase之间的
主要区别. Cassandra基本就是个key-value storage with random partition, 而
Hbase则与mapreduce概念结合更密切, 甚至提供coprocessor用来实现传统数据库中的
trigger等功能. Coprocessor应该就是个long standing mapper/reducer吧.
大家觉得这种架构可行吗?
z****g
发帖数: 75
11
来自主题: Programming版 - 说说12306需要多少台机器
锁定不是问题,问题是要persistence写log,这个是出票速度瓶颈
如果想把这个提高,两个途径
- 换成flash,提高IOPS,这个简单
- 出票并行,这个其实也是可以的,就是一次取多张票,就是一个persistence IO对
应譬如10张票啥的
这样会造成余票不完全准确,但是问题不大,同时可以设个timeout,卖不完退回
去即可,可以保证
在 1sec左右的粒度是精确的,足够实际应用
z****e
发帖数: 54598
12
vert.x的模式值得学习
它只做底层的封装
后续的发展通过pkg来做
这个就很像java和eclipse本身
java只做一些很基本的功能,然后爆第三方类库扩展
谁需要自己去下去,不同公司不同群体要求是不一样的
eclipse也是如此,只做最基本的标准化开发组件
其它的,自己去下plugins
vert.x现在也只做最基本的协议封装
其它的通过扩展模块来实现
现在就是hadoop目前还又大又全
看什么时候persistence能出现一个类似java,eclipse和vert.x的东西的话
就很有可能成功,目前为止,所有的persistence产品都是朝着大而全方向发展
这种模式到最后会拖垮自身,就跟现在的db一样
其实windows也是这种模式,恨不得什么都塞给你
而大多数人对其中99%的功能是不需要的
结果启动爆慢,然后学习门槛居高不下,最后所有人都放弃了,前功尽弃
被下一个简洁产品所取代
z****e
发帖数: 54598
13
来自主题: Programming版 - 小白弱问一个AWS EC2 outage的问题
你的persistence放哪里就挪哪里过去
如果你只有mysql,那就挪mysql过去
但是如果你还有其他的persistence,比如hbase
那就都挪过去,ec2的instance设计是
用来放一些服务器软件的,逻辑处理主要放在ec2上
其他cloud都是算一个instance,所以也分不了这么细
只能修改instance的各种参数,增加缩小酱紫
然后cloud根据访问流量自动调整instance的数量或者规模
这是cloud的最大的优势,对比一般的vps或者自己买机器而言
scale up/out很容易,自己撰机器受限于硬件性能
W***o
发帖数: 6519
14
我用Ninja framework处理提交的form data, 测试用的model是 Book (author; title)
,所以对应的数据表里只有三个fields: id, author, title
相对应的的form表单里的field所以就只有两个: author, title
我自己写了一个DAO, 对应存储的是下面这个postBook方法;在我的controller 类里面
我capture submitted form data, 然后就是call postBook(author, title); 而且用
System.out.println("author = " + author + ", title = " + title) 确认提交的表
单数据,在terminal里可以看到打印出来的中文字,所以我觉得乱码问题可能出现在
hibernate 存储 MySQL的过程。
更奇怪的是,这个乱码问题只出现在Linux server上(Ubuntu),在我的Mac Server上
没有这个问题。数据库charset设置是 utf8_general_ci,也试过了gbk中文... 阅读全帖
h*d
发帖数: 214
15
来自主题: Programming版 - 一个曾经困扰我很多年的中文翻译
那就是persistence。这个词的中文翻译是持久化。关键是读起来拗口,也很难直接和
存储挂上钩,一直困扰我理解ejb。后来某天开始读英文文档,看到persistence,才恍
然大悟,tmd这不就是相当于游戏里的存档吗?要是那个龟孙子一开始就翻译成存储化
,读起来和理解上立马上了个台阶。
大家知道别的什么中文翻译不?
m********5
发帖数: 17667
16
来自主题: Programming版 - 一个曾经困扰我很多年的中文翻译
我一贯翻译为 “宿存”,但没正式出现在出版物中。
这是一个在园林上使用很久的词
它的意思是:花不凋落,在枝头上直接发生变化
我感觉非常符合 presistence的意境,persistence不表示固化,它是有生命的,也不
仅仅是保存,它的意思是变化是非挥发性的,可以把变化不断保存起来。
因此 "宿存" 这个词非常合适,我建议大家以后都用宿存
persistent class可以翻译为“宿类”,非常容易望文生义,而且也简捷
c********1
发帖数: 421
17
来自主题: Programming版 - 向赵册请教几个Spring问题
原文:Spring in Action ,第三版
With Spring’s support for JPA, we’ll never deal directly with the
Persistence-Provider.
Therefore, it seems silly to extract configuration information into persis-
tence.xml.
In fact, doing so prevents us from configuring the EntityManagerFactory
in Spring (so that, for example, we can provide a Spring-configured data
source).
For that reason, we should turn our attention from application managed JPA
to container-managed JPA.
问题:在没有spring之前,application managed JPA和contai... 阅读全帖
g*****g
发帖数: 34805
18
来自主题: Programming版 - 向赵册请教几个Spring问题
Spring is a container, as it manages the life cycle of spring beans, it's
been considered as an EJB server replacement. Though it's lightweight in the
sense that it doesn't need to be standalone, and it's configurable in the
sense that you assemble only what you need.
Spring core provides spring jdbc template, which is just a wrapper over jdbc
. And it's the most used way when spring got popular 10 years ago. But
Hibernate got popular at the same time and later JPA emerges as a standard.
Today b... 阅读全帖
l**********n
发帖数: 8443
19
来自主题: Programming版 - Redis和Memcached有什么区别?
Here are a few examples of concrete usage of Redis on top of MongoDB.
Pre-2.2 MongoDB does not have yet an expiration mechanism. Capped
collections cannot really be used to implement a real TTL. Redis has a TTL-
based expiration mechanism, making it convenient to store volatile data. For
instance, user sessions are commonly stored in Redis, while user data will
be stored and indexed in MongoDB. Note that MongoDB 2.2 has introduced a low
accuracy expiration mechanism at the collection level (to b... 阅读全帖
z****e
发帖数: 54598
20
来自主题: Programming版 - 用python写多线程。刘姥姥都笑了
其实跟卡牌用redis没啥太大区别
很多idea是共通的,只不过redis做了persistence
而一般网游不会做persistence而已
都是纯内存操作,以保证效率
z****e
发帖数: 54598
21
来自主题: Programming版 - 用python写多线程。刘姥姥都笑了
lol
解释这么多
给你一个名词
就是checking嘛
如果你对transaction机制有所了解的话
这个东西早被人做烂了
我还以为是啥高大上的牛逼算法呢
原来就这破烂?
哎哟,你不说我还忘记了
这个逻辑用java一样实现
不用c我一样可以做出来
但是这个性能上的提升十分有限
除了装逼没鸟用,尤其是内存
如果我没记错的话,cassandra等nosql用得比较多
关于这种transaction的判断
有三种我记得,forward checking, backchecking还有一什么叉叉
忘了,一般因为硬盘上这种东西比较容易发生错误
所以主要是persistence时候用,内存不搞这个
内存中的操作以简化线程机制为主,只有分布式存储才会有这种问题
因为无法简化线程和进程之间的冲突,它一定有冲突
原理其实也很简单,就是用一个time stamp来替换lock
当你读的时候,看一下time stamp,然后当你update的时候
另外写一块,完成之后,看原来的time stamp是否被修改过
如果没有,直接用一个原子操作,把ref修改到新的地址块中去
实践中,只有nosql和db等pe... 阅读全帖
T*****e
发帖数: 361
22
来自主题: Programming版 - 请教一个JSF + Java 问题
你需要把你的流程按照时间上的先后,分成client和server的不同步骤,然后来考虑实
现。JSF在这些方面不是那么清晰,需要你自己先想明白自己到底想要干什么,然后决
定怎样干。
具体地,你的流程可能是这样的:(123: client, 45: server)
1. The user selects a file to upload.
2. The user clicks the "Submit" button.
3. The user is prompted to confirm new record insertion.
4. The file is uploaded to the server.
5. The content of the file is persisted.
如果是这样,你的Submit按钮上加个onsubmit js event handler就可以了。
流程也可以是这样的:(125: client, 346: server)
1. The user selects a file to upload.
2. The user clicks the "Subm... 阅读全帖
z****e
发帖数: 54598
23
哪怕自己建infra也需要区分persistence和service
如果直接在s3上做的话,最后层次切割不明确
最后会导致s3上的东西越做越大,最后什么东西都往s3上堆
内网虽然不如计算机硬盘上的io快,但是便于扩展呀
你这样做下去的后果就是做成一台巨大的mainframe
map reduce本来就不应该是persistence应该做的事
数据的存储这一层做好存储就可以了,计算和存储的分离应该是最早的设计思路
z****e
发帖数: 54598
24

replication,
using
binary
an
这几乎就是一个最低级的file system
谈不上什么像样的persistence
就类似你自己用io去做,就差不多这样了,就等于没有用db和nosql这些
远不如mongo,至少mongo还有replica,还能跑点sql
用mongo已经很蛋疼了,用这种方式搞,以后persistence可以把你折磨到死
z****e
发帖数: 54598
25
来自主题: Programming版 - node 求算法
老姜,这种一般都直接写成properties
而非存到persistance里面去
xml用得比较多,多弄点app就知道了,基本上都是xml在搞
android,fxml,就只有ios是json
当然其他语言parse xml很弱,你做成json也是一种方式
但是基本都是properties,比较少做成persistance
还有就是,即便你要这样搞,这种接近metdata的数据
也是用db比较多,你用nosql算是各种奇芭

r**i
发帖数: 1222
26
来自主题: Programming版 - Do we need redis anymore?
Hazelcast persist好像有点麻烦啊!有没有直接persist到文件系统的
t**********1
发帖数: 550
27
来自主题: Programming版 - 问魏老师个问题,跟赌约无关
想想下游有一个ACID的MESSAGE QUEUE。假设1M/s速率好了。
注意,抢到票才会送到下游。而下游的MQ是ACID的就是带persistence。保证persist后
才ACK。
那么,假定一天卖1000万张票。及时两秒抢光,用户等10秒也能收到确认。注意,我们
写入MQ,等ACK,再给用户确认。MQ消息带用户端ReqID。
别问我ACID MQ怎么做?你给我$1万,我给你做一个软件,硬件你自己买,保证指标合
格。
至于没来及写入MQ的,crash后恢复,当作没发生好了。
这东西恢复也就1秒以内。因为是hot standby。差的也就是最后几笔交易而已。
b******7
发帖数: 123
28
来自主题: Programming版 - 请老魏给出一个简单的文字解释
老魏这个方案看到:
1. 把本来的long transaction 切割,分解为前期只读的查询,中期的可以失败的单点
抢票机,和后期带transaction的出票部分,最大限度的缩短了transaction; 巧妙利用
了抢票机出错不影响persistent 数据的设计。
2. 前期,后期容易scale或者partition,因为面对是分解过的问题。
3. 单点抢票无需数据同步。
带来的问题可能有:
1.查到不一定抢到,因为persistent数据和i抢票机数据有延迟;这个用户体验可能会
不好。
2.复杂的联程票等等算法被推到前期部分,这个程序真的和计数器差不多,不过设计理
念还是可取的,起码是一种可以尝试的设计。
b***i
发帖数: 3043
29
来自主题: Programming版 - 请老魏给出一个简单的文字解释
我还有另一个问题,就是如何persist,这个频率多少?或者说,persist在交钱出票那
个环节?
就是说如果系统崩溃了,根据谁交钱来恢复当前状态?
d********g
发帖数: 10550
30
来自主题: Programming版 - AWS authentication 求推荐
REST最简单的就是在web server上设HTTP basic auth即可,如果不想改代码的话
其它方案key、token这些可能都涉及到persistence(不管是DB还是内存)。不要求
persistence的可以考虑JWT,但是这些都要求改代码
允许3rd-party webhook访问自己API的通用方案一般也是设HTTP basic auth,因为最
简单

key
i*********y
发帖数: 226
31
☆─────────────────────────────────────☆
btoh (Persistence) 于 (Mon Oct 22 19:58:49 2007) 提到:
发信人: btoh (Persistence), 信区: JobHunting
标 题: 收集了一些interview的video
发信站: BBS 未名空间站 (Mon Oct 22 19:58:29 2007)
http://jobinterviewvideos.blogspot.com/
很有帮助呀,慢慢看吧,有二十多个。
☆─────────────────────────────────────☆
moonbeam (moonbeam) 于 (Tue Oct 23 11:49:16 2007) 提到:
☆─────────────────────────────────────☆
moonbeam (moonbeam) 于 (Tue Oct 23 11:49:34 2007) 提到:
强烈感谢!!!!!
☆─────────────────────────────
s*****k
发帖数: 2297
32
Vipul Bhrigu,Toledo大学的博士,到Univ of Michigan Comprehensive Cancer
Center做博后。从09年12月开始“细致而系统”的暗中破坏同组博士女生Heather Ames
的样品。
女博士渐渐发现了问题,开始还以为是自己犯了错误,采取了一些措施防止出错,
甚至拿到未婚夫的实验室去做,总是有各种各样的问题。怀疑有人破坏,说给朋友,导
师,学校相关部门听,都劝她是不是自己多虑了,甚至认为是她自己工作不顺利,试图
归结于其他原因。
直到出现media上被洒酒精,并且接二连三的发生,终于正式由警方介入。女博士
被审问两次,测谎一次,才给实验室安装了两个摄像头,并且非常震惊(对于他们,对
于我肯定是理所当然)的发现实验室新来的,“和蔼可亲,友好,健谈”的印度博后
Vipul Bhrigu从冰柜中取出自己的样品,然后拿起擦桌子消毒用的酒精spray往里面一
阵乱喷。
庭审判了8.8K的罚款和6个月probation,40小时社区服务,给实验室设备、研究进
度、人员工资造成的损失要开听证会确定,初步数字72K。Vipul Bhrigu坦... 阅读全帖
n********k
发帖数: 2818
33
not really...he has been accusing/suing a couple of leading researchers
saying he was the first one to show that...blablabla...His persistence and
self-righteousness is very much intimidating...He would have much better off
if not wasting his intelligence and persistence on something meaningful...
m******g
发帖数: 467
34
楼主我最近申请了统计学双学位硕士(终于下定决心这么做了,开心!)
因为上周忙申请,所以基本没有更新。
Nature 13.11.21
推荐:
1. DNMT1-interacting RNAs block gene-specific DNA methylation
基因表达调节甲基化程度,对具体机制也有研究。
稍微了解一下:
1.Group size determines cultural complexity (引文)
正文:Experimental evidence for the influence of group size on cultural
complexity
实验室内的人的行为学研究,分为2,4, 8, 16人/组,完成简单和复杂的电脑任务
并判定完成的复杂度。
如果群体太小,复杂任务的质量会下降
(感觉做的很有意思,虽然结果是非常as expected.)
有趣的小知识:
1. Biology tool uncloaks folk-tale evolution
用进化树的方法研究童话的起源
2. Fish babies bigger in toxic water... 阅读全帖
m******g
发帖数: 467
35
楼主我最近申请了统计学双学位硕士(终于下定决心这么做了,开心!)
因为上周忙申请,所以基本没有更新。
Nature 13.11.21
推荐:
1. DNMT1-interacting RNAs block gene-specific DNA methylation
基因表达调节甲基化程度,对具体机制也有研究。
稍微了解一下:
1.Group size determines cultural complexity (引文)
正文:Experimental evidence for the influence of group size on cultural
complexity
实验室内的人的行为学研究,分为2,4, 8, 16人/组,完成简单和复杂的电脑任务
并判定完成的复杂度。
如果群体太小,复杂任务的质量会下降
(感觉做的很有意思,虽然结果是非常as expected.)
有趣的小知识:
1. Biology tool uncloaks folk-tale evolution
用进化树的方法研究童话的起源
2. Fish babies bigger in toxic water... 阅读全帖
s*****c
发帖数: 753
36
你这是相当迂腐。创造奇迹的人必有客观规律?
一个简单的例子。我们举办一个“石头,剪子,布“的比赛。单败淘汰。你会发现最后
的赢家连赢无数把。那它有什么规律?其实只是这个Game总有一个Winner而已。
在打个比方。你可以去读哪些名人小传,比如毛泽东,希特勒,布什。。。 他们是与
众不同。可其他人也有独到之处,为何只有他们上台?其实换个思路,总是会有人在台
上的,也许是李泽东,也许是可李。。。
这世界上人人想赚钱。你认为有捷径吗?你看那些成功者,有一样的吗?其实你能做的
就是蛮勇撞大运,Work hard, but don't expect that you will succeed for sure.
Be persistent in your effort to be successful(doens't mean be persistent to
your business ideas, there are examples that people stick to one idea and
finally be successful, but there are also mo
c******n
发帖数: 16403
37
【 以下文字转载自 Military 讨论区 】
发信人: sandvik (注册商标), 信区: Military
标 题: 印度博后暗中破坏组员的实验半年终于被捕(图)
发信站: BBS 未名空间站 (Wed Nov 24 17:14:44 2010, 美东)
Vipul Bhrigu,Toledo大学的博士,到Univ of Michigan Comprehensive Cancer
Center做博后。从09年12月开始“细致而系统”的暗中破坏同组博士女生Heather Ames
的样品。
女博士渐渐发现了问题,开始还以为是自己犯了错误,采取了一些措施防止出错,
甚至拿到未婚夫的实验室去做,总是有各种各样的问题。怀疑有人破坏,说给朋友,导
师,学校相关部门听,都劝她是不是自己多虑了,甚至认为是她自己工作不顺利,试图
归结于其他原因。
直到出现media上被洒酒精,并且接二连三的发生,终于正式由警方介入。女博士
被审问两次,测谎一次,才给实验室安装了两个摄像头,并且非常震惊(对于他们,对
于我肯定是理所当然)的发现实验室新来的,“和蔼可亲,友好,健谈”的印度博后
Vip... 阅读全帖
L*D
发帖数: 3966
38
来自主题: ChineseMed版 - Clare Hanrahan: Mugwort 艾草
http://findarticles.com/p/articles/mi_g2603/is_0005/ai_26030005
Encyclopedia of Alternative Medicine
Mugwort
by Clare Hanrahan
Apr 06, 2001
Mugwort (Artemisia vulgaris) also known as common artemisia, felon herb, St.
John's herb, chrysanthemum weed, sailor's tobacco, and moxa is a perennial
member of the Compositae family, and a close relative of wormwood (Artemisia
absinthium L.). Mugwort's generic name is from that of the Greek moon
goddess Artemis, a patron of women. Mugwort has long been con... 阅读全帖
l*****a
发帖数: 38403
39
Symptoms of a common cold usually appear about one to three days after
exposure to a cold-causing virus. Signs and symptoms of a common cold may
include:
Runny or stuffy nose
Itchy or sore throat
Cough
Congestion
Slight body aches or a mild headache
Sneezing
Watery eyes
Low-grade fever
Mild fatigue
The discharge from your nose may become thicker and yellow or green in color
as a common cold runs its course. What makes a cold different from other
viral infections is that you generally won't have ... 阅读全帖
s******n
发帖数: 2279
40
来自主题: MedicalCareer版 - Need advice, thanks!
quote from
"CURRENT Medical Dx & Tx"
Differential Diagnosis
ACUTE COUGH
Acute cough may be a symptom of acute respiratory tract infection, asthma,
allergic rhinitis, and CHF, as well as a myriad
of other less common causes.
PERSISTENT AND CHRONIC COUGH
Causes of persistent cough include environmental exposures (cigarette smoke,
air pollution), pertussis infection, postnasal
drip syndrome (or upper airway cough syndrome), asthma (including cough-
variant asthma), GERD, COPD,bronchiectasis, eosino
b*********y
发帖数: 93
41
来自主题: MedicalCareer版 - 请教一道UW 关于孤立性房颤的题
Thank you for all your kindly replying.
Still, For equivalent outcome from rhythm control vs rate control, I think,
the conclusion from AFFIRM is for old people with heart disease, persistent
AF, and asymptomatic.But for young people , without heart disease, I am not
sure if it fit. Because if the AF prolonged, the electric and mechanical
remodeling will make it hard to go back to sinus rhythm, and become a
persistent AF. If this pt is symptomatic , it is easy to decide: rhythm
control. Only bec... 阅读全帖
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)