2
In my system I have a List<object>
, While using the system I add items to it until I get to a certain point that the system starts to lock, to get very slow. My system can add up to forty thousand items on this list, I never got to that point because it hangs before.
What could be done in this situation?
Note: I would not like to have to use a BD
Look guy are many items and is likely to lock, The ideal is to use a BD that is suitable to receive great data, I even understand that you do not want to use DB but we can not exchange cat for hare right? ... I would recommend an internal DB without external connection and such, just to save the items.
– Viniam
Add in the question a code snippet that demonstrates how this list is being created, the way the question is getting hard to develop a solution.
– Zignd
Not a local BD like SQL Compact or Sqlite?
– OnoSendai