Creating a bookmarking site similar to delicious has been my latest project. To ensure an optimized user experience, I have decided to fetch all the bookmarks from the database table and organize them into a JSON object containing essential data such as id, title, url, description, and tags for each bookmark. The JSON object is generated during the initial page load and then dynamically styled and injected using jquery.each.
Without having the ability to test it yet, one question lingers in my mind: What would be the impact on browser performance or any potential issues that could arise if a user were to save an unlimited number of bookmarks, let's say 2000, especially since pagination is not an option for this particular project?