Click here to Skip to main content
15,890,579 members
Home / Discussions / Design and Architecture
   

Design and Architecture

 
GeneralRe: One Language to rule them all (About business rules) Pin
Bastien Vandamme18-Jun-14 23:57
Bastien Vandamme18-Jun-14 23:57 
GeneralRe: One Language to rule them all (About business rules) Pin
Bastien Vandamme22-Jun-14 20:26
Bastien Vandamme22-Jun-14 20:26 
AnswerRe: One Language to rule them all (About business rules) Pin
jschell4-Feb-14 13:26
jschell4-Feb-14 13:26 
AnswerRe: One Language to rule them all (About business rules) Pin
Bastien Vandamme27-Oct-14 0:17
Bastien Vandamme27-Oct-14 0:17 
QuestionTips for designing chat application for mobile devices Pin
tumyp-dev30-Jan-14 13:13
tumyp-dev30-Jan-14 13:13 
QuestionDesign efficiency Pin
Gregory Gadow23-Jan-14 3:22
Gregory Gadow23-Jan-14 3:22 
AnswerRe: Design efficiency Pin
José Amílcar Casimiro23-Jan-14 6:13
José Amílcar Casimiro23-Jan-14 6:13 
AnswerRe: Design efficiency Pin
jschell23-Jan-14 13:26
jschell23-Jan-14 13:26 
Gregory.Gadow wrote:
Passwords will be hashed, which means my hashing routine will be used A LOT.


I sort of doubt that. Only way that would occur is if you required the password on every single request (not session.)

Not to mention of course that this would suggest that you think that the time for this process is at least significant if not the biggest factor in the request.

And regardless the impact of the call itself is going to be trivial compared to the cost of actually doing the hash.

Gregory.Gadow wrote:
Is there a performance hit by having a method in a separate assembly?


If you have profiled your application using real message process flows and determined that calling semantics themselves are significant then you probably want to write everything in C++ and create one massively statically linked application.

Myself I doubt that you can measure the normal calling semantics in any application that isn't anything other than a benchmark in all of the major languages. And it won't be significant.

There are of course ways to produce non-normal calling semantics for instance if you dynamically loaded a module for every single method call (unloading it each time) then I would expect that to be measurable. And very, very likely to be a bad design as well.
AnswerRe: Design efficiency Pin
Shameel27-Jan-14 3:09
professionalShameel27-Jan-14 3:09 
AnswerRe: Design efficiency Pin
Kornfeld Eliyahu Peter30-Jan-14 8:08
professionalKornfeld Eliyahu Peter30-Jan-14 8:08 
GeneralHave you ever used eXERD? Pin
Member 1050518322-Jan-14 15:39
Member 1050518322-Jan-14 15:39 
GeneralRe: Have you ever used eXERD? Pin
Member 105722145-Feb-14 23:08
Member 105722145-Feb-14 23:08 
QuestionPolling Architecture Suggestion Required Pin
Erpizn_1316-Jan-14 1:47
Erpizn_1316-Jan-14 1:47 
AnswerRe: Polling Architecture Suggestion Required Pin
Keld Ølykke20-Jan-14 10:52
Keld Ølykke20-Jan-14 10:52 
GeneralRe: Polling Architecture Suggestion Required Pin
Erpizn_1321-Jan-14 2:36
Erpizn_1321-Jan-14 2:36 
GeneralRe: Polling Architecture Suggestion Required Pin
Keld Ølykke21-Jan-14 12:15
Keld Ølykke21-Jan-14 12:15 
AnswerRe: Polling Architecture Suggestion Required Pin
Leng Vang30-Jan-14 6:20
Leng Vang30-Jan-14 6:20 
AnswerRe: Polling Architecture Suggestion Required Pin
Marc Koutzarov29-Aug-14 10:12
professionalMarc Koutzarov29-Aug-14 10:12 
Questionneed your opinion on this project Pin
nonogus14-Jan-14 21:31
nonogus14-Jan-14 21:31 
AnswerRe: need your opinion on this project Pin
Bernhard Hiller15-Jan-14 21:44
Bernhard Hiller15-Jan-14 21:44 
AnswerRe: need your opinion on this project Pin
jschell16-Jan-14 8:44
jschell16-Jan-14 8:44 
GeneralRe: need your opinion on this project Pin
nonogus16-Jan-14 22:39
nonogus16-Jan-14 22:39 
GeneralRe: need your opinion on this project Pin
jschell17-Jan-14 13:01
jschell17-Jan-14 13:01 
GeneralRe: need your opinion on this project Pin
nonogus17-Jan-14 23:50
nonogus17-Jan-14 23:50 
GeneralRe: need your opinion on this project Pin
jschell18-Jan-14 11:41
jschell18-Jan-14 11:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.