The tag has no wiki summary.

learn more… | top users | synonyms

-2
votes
1answer
54 views

Is it reasonable to develop large-scale projects in ASP.NET MVC 4?

Is it reasonable to develop large-scale projects (social networks) that in perspective will process millions of visits per day in ASP.NET MVC. I guess in that case performance of the site will be ...
0
votes
0answers
18 views

Require different apps in the same page that have files with the same name

I have an app that loads other apps and switches between them. My problem is that when I load an app that has files with the same name as an app that is already loaded, requirejs uses the already ...
0
votes
0answers
43 views

Large scale recommender

I am dealing with a recommendation problem, which involves 3 million users and 500,000 products. The purpose of the recommendation is to recommend 5-10 more products to the particular user when ...
2
votes
1answer
74 views

Large shared code base, extend functionality [closed]

Our application is a large scale Javascript application, using the Javascript MVC framework. We are using the MVC app folder across all of our sites via an SVN:external, and each site also has their ...
1
vote
1answer
156 views

Whats the best structure for a large scale python tornado project? [closed]

I'm using a mongodb database backend with tornado as my core. I currently just have my main file with a bunch of handlers in it. It's a multiuser webapp with links between users, aka a "friend" ...
3
votes
3answers
61 views

Optimizing a query for optional fields from another table

I have a innodb table called items that powers one ecommerce site. The search system allows you to search for optional/additional fields, so that you can e.g. search for only repaired computers or ...
-2
votes
3answers
205 views

Find the median of N^2 elements( large scale )

The question is like this: Assume we have N machines, and each machine store and can manipulate its N elements, then, how can we find the median of all the N^2 elements in the lowest cost? It really ...
1
vote
2answers
227 views

Memory problems with large-scale social network visualization using R and Cytoscape

I'm relatively new to R and am trying to solve the following problem: I work on a Windows 7 Enterprise platform with the 32bit version of R and have about 3GB of RAM on my machine. I have large-scale ...
0
votes
2answers
191 views

Scalable System Architecture/Design for Reading/Parsing Files

Background: I am designing a software application that reads millions or much more files and either converts or just parses those files. Part of requirement is to build a scalable and distributed ...
2
votes
3answers
220 views

Is there any must-have kind of book about Symfony-2.0 and large scale projects? [closed]

I'm looking for a guide book for Symfony framework, specially version-2.0. I'm interested in more advanced guides, specially about how to "squeeze" the maximum performance from symfony, optimizations ...
234
votes
7answers
18k views

Large-scale design in Haskell?

What is a good way to design/structure large functional programs, especially in Haskell? I've been through a bunch of the tutorials (Write Yourself a Scheme being my favorite, with Real World Haskell ...
8
votes
6answers
2k views

With Haskell, how do I process large volumes of XML?

I've been exploring the Stack Overflow data dumps and thus far taking advantage of the friendly XML and “parsing” with regular expressions. My attempts with various Haskell XML libraries to find the ...
7
votes
3answers
745 views

Dealing with large files in Haskell

I have a large file (4+ gigs) of, lets just say, 4 byte floats. I would like to treat it as List, in the sense that I would like to be able to use map, filter, foldl, etc. However, instead of ...