Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
11answers
1k views

How many variables should a constructor have?

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 variables should be ...
18
votes
12answers
1k views

Biggest number in computer ever

Just asked by my 5 year old kid: what is the biggest number in the computer? We are not talking about max number for a specific data types, but the biggest number that a computer can represent. ...
16
votes
5answers
10k views

HTML5 localStorage restrictions and limits

HTML5's localStorage databases are usually size-limited — standard sizes are 5 or 10 MB per domain. Can these limits be circumvented by subdomains (e.g. example.com, hack1.example.com and ...
14
votes
1answer
2k views

How much memory of Memcache is available to a Google App Engine account?

Google App Engine has some information about Memcache limits: http://code.google.com/appengine/docs/quotas.html#Memcache ...
13
votes
4answers
4k views

How can I programmatically remove the 2 connection limit in WebClient

Those "fine" RFCs mandate from every RFC-client that they beware of not using more than 2 connections per host... Microsoft implemented this in WebClient. I know that it can be turned off with ...
13
votes
3answers
12k views

hitting the 2100 parameter limit (sql-server) when using Contains()

from f in CUSTOMERS where depts.Contains(f.DEPT_ID) select f.NAME depts is a list (IEnumerable<int>) of department ids this query works fine until you pass a large list (say around 3000 dept ...
13
votes
4answers
4k 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?
12
votes
4answers
17k views

MySQL maximum memory usage

I would like to know how it is possible to set an upper limit on the amount of memory MySQL uses on a Linux server. Right now, MySQL will keep taking up memory with every new query requested so that ...
11
votes
5answers
2k views

Enum exeeding the 65535 bytes limit of static initializer… what's best to do?

I've started a rather large Enum of so called Descriptors that I've wanted to use as a reference list in my model. But now I've come across a compiler/VM limit the first time and so I'm looking for ...
11
votes
4answers
4k views

Max files per directory in S3

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 into a ...
10
votes
6answers
145 views

Taking the second last row with only one select in SQL Server?

I was trying to select the second last row with SQL Server. So I wrote a query like this: SELECT TOP 1 * From Cinema WHERE CinemaID!=(SELECT TOP 1 CinemaID FROM Cinema ...
10
votes
2answers
2k views

Sqlite LIMIT / OFFSET query doubt

I have simple question with Sqlite. What is the difference between this: Select * from Animals LIMIT 100 OFFSET 50 and Select * from Animals LIMIT 100,50 thanks in advance
10
votes
4answers
3k views

Why does the 260 character path length limit exist in Windows?

I have come up against this problem a few times at inopportune moments: trying to work on open source Java projects with deep paths Storing deep Fitnesse wiki trees in source control An error trying ...
10
votes
2answers
940 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 ...
9
votes
5answers
462 views

How big is too big for a mysql table?

I was finally convinced to put my smaller tables into one large one, but exactly how big is too big for a mysql table? I have a table with 18 fields: Some are TEXT, some are short VARCHAR(16), others ...
9
votes
4answers
3k views

How can I speed up a MySQL query with a large offset in the LIMIT clause?

I'm getting performance problems when LIMITing a mysql SELECT with a large offset: select * from table limit m, n; If the offset m is, say, larger than 1,000,000, the operation is very slow. I do ...
9
votes
5answers
14k views

LIMIT 10..20 in sqlserver

I'm trying to do something like : SELECT * FROM table LIMIT 10,20 or SELECT * FROM table LIMIT 10 OFFSET 10 but using SQLServer The only solution I found looks like overkill: SELECT * FROM ( ...
7
votes
2answers
81 views

time limit function execution in PHP or anything else

I could say that my question is related to PHP, but what I'm more concerned is proper logic of programming in situation where function execution can go on indefinitely. What is the proper way of ...
7
votes
3answers
1k views

Why does MYSQL higher LIMIT offset slow the query down?

Scenario in short: A table with more than 16 million records [2GB in size]. The higher LIMIT offset with SELECT, the slower the query becomes, when using ORDER BY *primary_key* So SELECT * ...
7
votes
3answers
90 views

Why does my SQL query fail?

I'm using this to retrieve information from a database, the query always brings errors This is my query: SELECT * FROM users ORDER BY RAND() LIMIT '10' It always brings up errors on either the ...
7
votes
2answers
3k views

MYSQL - Group by limit

Is there a simple way to LIMIT the GROUP BY results to the top 2. The following query returns all the results. Using 'LIMIT 2' reduces the overall list to the top 2 entries only. select ...
7
votes
5answers
5k views

Check the open FD limit for a given process in Linux

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 ...
6
votes
2answers
139 views

Mysql upper limit for count(*)

I've got a query: select count(*) from `table` where `something`>123 If the table has few million records, the query runs really slow even though there's an index on column something. However, ...
6
votes
2answers
373 views

What is the maximum amount memory Adobe AIR can utilize?

I've been doing some rapid prototyping for a game I'm thinking of building. one of the main things i want to do is map generation for a tile type map. While generating the map i end up using large ...
6
votes
2answers
276 views

Limit web service access to iPhone app

I'm managing the development of an iPhone app that relies on web services to provide catalog access. My main security concern right now is someone accessing my web service and replicating/scraping my ...
6
votes
1answer
342 views

COUNT with LIMIT in mysql query

i need to get total amount of rows when using LIMIT with my query to avoid twice querying. is it possible?
6
votes
2answers
119 views

Select is much slower when selecting latest records

A table with about 70K records is displayed on a site, showing 50 records per page. Pagination is done with limit offset,50 on the query, and the records can be ordered on different columns. Browsing ...
6
votes
4answers
389 views

How to limit the wordpress tagcloud by date?

I've been searching for quite a while now to find a way to limit wordpress tags by date and order them by the amount of times they appeared in the selected timeframe. But I've been rather unsuccesful. ...
6
votes
3answers
134 views

How to SUM() from an offset through the end of the table?

If SELECT SUM(amount) FROM transactions ORDER BY order LIMIT 0, 50 sums the amount field for the first 50 records in a table, how do a sum all records after the first 50? In other words, I'd like to ...
6
votes
5answers
4k views

Limit the size of List(Of T) - VB.NET

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 object but ...
5
votes
1answer
181 views

Don't understand “(#4) User request limit reached”

{ "error": { "message": "(#4) User request limit reached", "type": "OAuthException" } } I'm not sure the cause of this error, and yes I've done lots of searching around for similar ...
5
votes
2answers
57 views

Is there a theorical expression size limit for “or” operator on Regex.Replace

Is there a theorical expression size limit for "or" operator on Regex.Replace such as Regex.Replace("abc","(a|c|d|e...continue say 500000 elements here)","zzz") ? Any stackoverflowException on ...
5
votes
2answers
81 views

Wix: How to limit major upgrades to major version numbers?

I need the following behaviour from my wix-based installers: Every setup in the major version 1.x.x line should majorupdate any previous version of the 1.x.x line. Every setup in the major version ...
5
votes
2answers
388 views

Increase iPad 10MB cache limit

We have a web application that is supposed to work offline on iPads. It's using manifest to define which files need to be cached. The point is that we have reached the 10MB limit the iPad has to store ...
5
votes
4answers
58 views

Group By specified numbers of ordered rows

I have such table in my MySQL database: --------------------------- |fid | price | date | --------------------------- | 1 | 1.23 | 2011-08-11 | | 1 | 1.43 | 2011-08-12 | | 1 | 1.54 | ...
5
votes
1answer
469 views

Setting memory consumption limits with Upstart

I've recently become quite fond of Upstart. Previously I've been using God, Monit and Bluepill but I don't really like these solutions so I'm giving Upstart a try. I've been using the Foreman gem to ...
5
votes
2answers
195 views

limit the number of objects returned in a has_many

How can I limit the number of rows returned in a has many relationship? For example: class User < ActiveRecord::Base has_many :photos end I want to be able to do: User.includes(:photos => ...
5
votes
2answers
427 views

What is max length for an C/C++ identifier on common (build) systems?

I don't remember the standard saying something of the max length for identifiers so in theory they can be long. In real life, those names could be limited by at least the compiler and linker ...
5
votes
4answers
421 views

When (not) to abuse NSUserDefaults

I wonder what the guidelines are for: 1 - how often I can read from NSUserDefaults 2 - how much data I can reasonably store in NSUserDefaults Obviously, there are limits to how much NSUserDefaults ...
5
votes
3answers
304 views

Python Number Limit

I know in most, if not all programming languages, integers, floats etc all have a maximum amount they can hold, either unsigned or signed. Eg pascal's int type can only hold up to 32768 ~. What i ...
5
votes
3answers
689 views

Can I limit the length of text in a JTextField which can be painted, while still storing the full text?

I have a text field in my application. Despite it being a text field, users sometimes paste huge amounts of text into it. Additionally, other functions of the problem set large amounts in as well. ...
5
votes
2answers
481 views

SQL Server: Select Max Limit 1 from Group

Using SQL Server. Ok, I'm making an in webpage cache system. I wanted to make a simple page rank system along with output. The problem is, I want to display the recordset with the highest relevance ...
5
votes
11answers
400 views

Is there any limit on number of html elements, that browser can display without problems?

Basically I've got a huge table, which gets even bigger as user scrolls down (auto preloading subsequent rows). At some point browser becomes sluggish, it starts to hang for a moment as I click around ...
5
votes
4answers
211 views

Select items that are the top N results for a related table

Say I have a game where a question is asked, people post responses which are scored, and the top 10 responses win. I have a SQL database that stores all of this information, so I might have tables ...
5
votes
1answer
307 views

How to increase limit of graph in LINQPad?

Results shown in LINQPad are limited. If objects are deep nested, a red line is shown. I would like to increase a limit, so I can see more nested objects. Do you know how to do it? (I have not find ...
5
votes
3answers
5k views

LIMITing an SQL JOIN

I am trying to limit the following SQL statement. SELECT expense.*, transaction.* FROM expense INNER JOIN transaction ON expense_id = transaction_expense_id What I want to do, is limit the number ...
5
votes
1answer
959 views

Delphi: Limiting TCP connections

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 does not ...
5
votes
13answers
4k views

Limiting certain processes to CPU % - Linux

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 certain ...
4
votes
1answer
58 views

Is there any property on SQL Server similar to Oracle's auto limit?

There are a lot of records on my table. Sometimes I can forget using top keyword while querying so after that it can be very annoying to be waiting for so long. Oracle brings top 500 records if you ...
4
votes
1answer
77 views

What is the record limit of MySQL extended insert statement?

What is the record limit (n) of MySQL extended insert statement? INSERT INTO table (field) VALUES (1),(2),(n) What happens when the limit exceeds? Will only overflow rows left out or the whole ...

1 2 3 4 5 16