Sparx Systems Forum

Enterprise Architect => Automation Interface, Add-Ins and Tools => Topic started by: K N on February 26, 2013, 03:13:01 am

Title: Encrypt Connection String & lazy Load functions
Post by: K N on February 26, 2013, 03:13:01 am
Hi

I want to the basic purpose of

Encrypt Connection String
Lazy Load

when we connect EA to the DBMS repsository.

Does this have any effect on the DBMS in terms of speed or performance/ speed with which i can save and load my work into the repository?

Thanks
KN
Title: Re: Encrypt Connection String & lazy Load function
Post by: Eve on February 26, 2013, 09:49:48 am
Encrypt connection string results in an insignificant amount of time extracting plain text once when connecting. (ie. Ignore it)

Lazy load is a trade off. You're choosing between a large delay connecting to a model and having everything already loaded and a smaller delay with further small delays when opening packages in the project browser (or other operations that require information from the project browser.)

If you enabled lazy load and then opened every single package you would be waiting longer in total. However, on a large model you will generally access only a small portion of the model in any one session. On a small model you won't really notice it anyway.
Title: Re: Encrypt Connection String & lazy Load function
Post by: K N on February 27, 2013, 01:39:58 am
Thnks Simon !!!

That is really helpful.