0
votes
3answers
144 views
Bitwise XORing and shifting of integer arrays
Suppose a bit sequence of size M, and another bit sequence of size N, with M >> N. Both M and N can be saved inside integer arrays: If N has a length of 30 then an array with only …
0
votes
2answers
23 views
Efficient latest record query Postgresql
Alright I need to do a big query, but I only want the latest records.
For a single entry I would probably do something like
SELECT * FROM table WHERE id = ? ORDER BY date DESC LI …
3
votes
3answers
138 views
Python: How much space does each element of a list take?
I need a very large list, and am trying to figure out how big I can make it so that it still fits in 1-2GB of RAM. I am using the CPython implementation, on 64 bit (x86_64).
Edit: …
2
votes
5answers
144 views
Quicker ways to search a C# List<String>
I currently have a list called regkey and a string called line_to_delete, which I obviously want to delete from the list. At the moment I'm searching through one element of the lis …
0
votes
5answers
112 views
charAt() or substring? Which is faster?
I want to go through each character in a String and pass each character of the String as a String to another function.
String s = "abcdefg";
for(int i = 0; i < s.length(); i++ …
1
vote
5answers
81 views
Efficiently finding the ranks of elements in an array?
How does one find the rank of each element of an array, averaging in the case of ties, efficiently? For example:
float[] rank(T)(T[] input) {
// Implementation
}
auto foo = …
3
votes
10answers
275 views
Is it more efficient to compare ints and ints or strings and strings
I've got a program written in c# where there are a lot of comparisons between ints and strings.
So for performance reasons I would just like to know which is more efficient?
If w …
0
votes
2answers
33 views
Is converting a NameValueCollection to a querystring using a c# lamdba efficient?
In researching how to convert a NameValueCollection to a querystring, I have come across different methods. I am curious if the shorter lambda syntax is as efficient as it could b …
0
votes
3answers
32 views
mySQL - A new table of each page?
Every page on my application will display 1000 records and they are only needed on that page.
Is it more efficient to have one huge table with an additional 'page id' column or to …
2
votes
5answers
62 views
Purging SQL Tables from large DB?
The site I am working on as a student will be redesigned and released in the near future and I have been assigned the task of manually searching through every table in the DB the s …
1
vote
1answer
38 views
What is the most efficient method for looping through a SortedList in VB 2008?
The code below shows me (I think) that the "for each" loop is about 10% faster than the "i to n" loop, but the "for each" loop creates 567k in new memory? Is this right? Which way …
0
votes
2answers
46 views
Efficient way to display Inbox(1) count in a webapp w/o calling DB for each page request
In my web application we have built a message center / inbox functionality, in the navigation of each page we link to the "Message Center" and include next to it a count of the unr …
0
votes
3answers
41 views
Execute Code Segment only if Loop reaches its last cycle (End of Loop)
Where is the most efficient position for a code block, which shall only execute, if a loop has reached its end, without having previously been aborted (via break or return)?
The q …
1
vote
7answers
148 views
Is it fair to be held up to mockery for preferring to run “mvn clean install” as 2 commands ?
One of my team mates was held up for mockery by the team leads for preferring to run maven as:
$ mvn clean
$ mvn install
The discussion by the team leaders was about efficiency …
0
votes
6answers
59 views
mySQL - One large query vs Ajax indivdual queries
Hi guys,
I guess no one will have a definative answer to this but considered predictions would be appriciated.
I am in the process of developing a mySQL database for a web applic …
