15
votes
11answers
459 views
How many variables should a constructor have?
Hello everyone,
I realize this is a pretty open question and could get a variety of answers, but here goes.
Using C# (or Java, or any OO language), is there a general rule that states how many …
7
votes
4answers
853 views
Does adding ‘LIMIT 1’ to MySQL queries make them faster when you know there will only be 1 result?
When I add LIMIT 1 to a MySQL query, does it stop the search after it finds 1 result (thus making it faster) or does it still fetch all of the results and truncate at the end?
5
votes
2answers
445 views
Delphi: Limiting TCP connections
Hello.
I'm using the TServerSocket component in my Delphi application. I would like to limit client connections, let's say to one thousand. Unfortunately i don't know how to do that. The component …
4
votes
2answers
148 views
scala mailbox size limit
I can see that scala can solve the Producer-Consumer problem using actors. There is a couple of examples on the web but what is worrying me is the unlimited growth of an actor's mailbox.
Suppose the …
4
votes
5answers
213 views
Should SQL ranking functionality be considered as “use with caution”
This question originates from a discussion on whether to use SQL ranking functionality or not in a particular case.
Any common RDBMS includes some ranking functionality, i.e. it's query language has …
4
votes
3answers
198 views
VARCHARS: 2, 4, 8, 16, etc.? Or 1, 3, 7, 15, etc.?
I see VARCHAR(255) being used all the time instead of VARCHAR(256), but I also see VARCHAR(16) being used instead of VARCHAR(15). This seems inconsistent to me. If an extra byte is being used to store …
4
votes
5answers
813 views
Limit the size of List(Of T) - VB.NET
Hello
I am trying to limit the size of my generic list so that after it contains a certain amount of values it wont add any more.
I am trying to do this using the Capacity property of the List …
4
votes
3answers
642 views
Max files per directory in S3
Hi,
If I had a million images, would it be better to store them in some folder/sub-folder hierarchy or just dump them all straight into a bucket (without any folders)?
Would dumping all the images …
3
votes
3answers
135 views
Simple query takes 15-30 seconds
The following query is pretty simple. It selects the last 20 records from a messages table for use in a paging scenario. The first time this query is run, it takes from 15 to 30 seconds. Subsequent …
3
votes
2answers
101 views
What is the Equivalent syntax of mysql “ LIMIT “ clause in SQL Server
What is the Equivalent syntax of MySQL " LIMIT " clause in SQL Server . I would like to use it for doing paging of my results. (want to show records5 to 10 )
3
votes
4answers
489 views
Check the open FD limit for a given process in Linux
Hi,
I recently had a Linux process which "leaked" file descriptors: It opened them and didn't properly close some of them.
If I had monitored this, I could tell - in advance - that the process was …
3
votes
3answers
168 views
Is a GROUP BY on UNIQUE key calculates all the groups before applying LIMIT clause?
If I GROUP BY on a unique key, and apply a LIMIT clause to the query, will all the groups be calculated before the limit is applied?
If I have hundred records in the table (each has a unique key), …
3
votes
4answers
532 views
What is a maximum number of arguments in a Python function?
It's somewhat common knowledge that Python functions can have a maximum of 256 arguments. What I'm curious to know is if this limit applies to *args and **kwargs when they're unrolled in the …
3
votes
4answers
253 views
LIMIT in FoxPro
I am attempting to pull ALOT of data from a fox pro database, work with it and insert it into a mysql db. It is too much to do all at once so want to do it in batches of say 10 000 records. What is …
3
votes
13answers
1k views
Limiting certain processes to CPU % - Linux
Hi!
I have the following problem: some processes, generated dynamically, have a tendency to eat 100% of CPU. I would like to limit all the process matching some criterion (e.g. process name) to a …
