Author Topic: Encrypt Connection String & lazy Load functions  (Read 3667 times)

K N

  • EA User
  • **
  • Posts: 98
  • Karma: +0/-0
    • View Profile
Encrypt Connection String & lazy Load functions
« 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

Eve

  • EA Administrator
  • EA Guru
  • *****
  • Posts: 8085
  • Karma: +118/-20
    • View Profile
Re: Encrypt Connection String & lazy Load function
« Reply #1 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.

K N

  • EA User
  • **
  • Posts: 98
  • Karma: +0/-0
    • View Profile
Re: Encrypt Connection String & lazy Load function
« Reply #2 on: February 27, 2013, 01:39:58 am »
Thnks Simon !!!

That is really helpful.