|
When sending larger files (e.g. 10-15 MB) over HTTPS (as opposed to HTTP) what are the performance implications (if any)? (the files are CSVs) Thanks.
Answer Snippets (Read the full thread at stackoverflow):
One potential problem is that not all server support....
Generally speaking, I'd say that neither is the right tool for the job .
A good way to find out if that is OK or not in your usage scenario is to test and measure .
HTTPS is more CPU intensive than HTTP.
|
|
Question is as stated in the title: What are the performance implications of marking methods / properties as virtual?
Note - I'm assuming the virtual methods will not be overloaded in the common case; I'll usually be working with the base class here.
Started by Erik Forbes on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
Of these performance implications of various dispatch mechanisms don't matter unless you proven it by measuring ;) (And even then the architecture implications, readability etc might have a big weight.
|
|
Hello. I'm learning C++ and I'm still confused about this. What are the implications of return a value as constant, reference and constant reference in C++ ? For example:
const int exampleOne(); int& exampleTwo(); const int& exampleThree();
Answer Snippets (Read the full thread at stackoverflow):
What are the implications ....
I think that your question is actually two questions:
What are the implications of returning a const.
However to it.
Is laudable, but didn't quite understand the implications of what they were writing.
|
Ask your Facebook Friends
|
Just saw this at the top of a piece of code:
\* @license OPPL
What on earth is an OPPL license? Google has been uncharacteristically inconclusive. Has anyone come across this beast before, and what are it's main implications?
Started by reefnet_alex on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
According to this header file It's supposed to be available at http://www.nextco.com/licenses/oppl/ , but the site doesn't seem to exist anymore (this is why most licenses make you include the license text with... .
Probably the Open Project Public License.
|
|
Software can have ethical implications in real life. One obvious example is the software that controls a military drone. A more subtle example is software that creates statistical reports for management about an employee's days off because of illness ...
Started by Mnementh on
, 21 posts
by 21 people.
Answer Snippets (Read the full thread at stackoverflow):
The ethical implications of many programmers should care about the implications....
Should be very aware of the ethical implications and use of his work (just like everyone should if they are prepared to work on software that plays a part in war.
|
|
Aside from the fact that the code itself can access memory directly. What are the other implications of using the "/unsafe" compiler flag and the "fixed" keyword? Are there any knock on effects related to code signing and deployment of my .exe (my app...
Started by Matt Warren on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The first is how.
You can put the implications into two buckets.
Then this might impact you there.
|
|
What are the performance, security, or "other" implications of using the following form to declare a new class instance in PHP
<?php $class_name = 'SomeClassName'; $object = new $class_name; ?>
This is a contrived example, but I've seen this form...
Started by Alan Storm on
, 13 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
It looks you can still pass arguments to the constructor, here's my test code:
<?php class Test { function __construct($x) { echo $x; } } $class = 'Test'; $object = new $class('test'); // echoes "test" ?>
That is what you meant, right?
So the only... .
|
|
I was told that the following portion of code is deeply recursive. However I don't understand how - can someone explain? If so, what are the associated implications? Note: Trivial example
check: # Grab some data held in a file while ((ReadFile ()) != ...
Started by Aaron on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
However, it'll be cleaner and easier to read if you eliminate the useless... .
As others have said, your code isn't recursive, so don't worry about it .
Your code may have recursion, but it's not shown in the code you offered .
There's no recursion in that code.
|
|
I'm having asp.Net barf at me when I submit the a form with a value like <a_ (underscore is a space). This is bad - at the very least I want to be able to gracefully handle the error, ideally I'd like the user to be able to submit anything they like...
Started by Kragen on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This could lead to a variety of things, from mangling the content... .
What do you do with the submitted information?
If you are going to display it on the screen for other users you are opening yourself up XSRF pretty badly .
Best to do the javascript thing.
|
|
I've started to use mysql_data_seek () as an easy way to roll pagination transparently into my database class by shifting the pointer and reading the current 'page'.
What are the performance implications of doing this? I am only reading the data I need...
Started by Meep3D on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I imagine that using the appropriate LIMIT clause in your SELECT statement is more efficient (it will definitely save lookup time atleast), but I don't know how the internals of how mysql_data_seek works, specifically if it reads x records and discards... .
|