Reputation: 671
We are working on a mapping application on ArcGIS Server, the application requires to work with large number of records 100K+ retrieved from the server.
Which is better to build such application as a web using Flex or standalone application? The application uses spatial analyses spatial queries.
Upvotes: 1
Views: 241
Reputation: 63
Flex won't make it ) It will die on 1k while loading all that huge data on your client PC:) The only way to make it with Flex is to:
You should not ever load that much data on your client PCs
Upvotes: 1
Reputation: 76
I would suggest the desktop. Then you can put the data in AIR's sql database, which could save redundant downloads in the future and make it very fast to work with the data.
Upvotes: 1