It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
Possible solution | Assumptions | Pros | Cons |
There are two tables, trades1 and trades2. When it is time to update, MtGox appends to trades1, then copies this table to trades2. Next time, they append to trades2 and copy to trades1. Both tables are identical, and the tool can download from trades1 every 10 minutes | That copy operations preserve row order and prevent coalesce operations | Free, simple, quick, tool continues to work as it does now -- basically the ideal solution | None |
There are two tables, trades and trades_sorted. When it is time to update, MtGox appends to trades then performs a "SELECT * FROM trades ORDER BY Money_Trade__ ASC" using trades_sorted as the destination table (and using WRITE_TRUNCATE mode) | That the sorted table will be guaranteed to remain sorted, and won't be coalesced | Tool continues to work as usual (switched to download from trades_sorted) | MtGox must pay up to $60/month to implement this |
Hybrid solution. The tool checks whether the trades table has been coalesced since last updated. If yes, then it downloads by SQL query, otherwise it downloads using the normal tabledata:list method | That it is possible to check for coalescence, that checking is free | Since coalescence only occurs about every 2 days at most frequent, the usage should remain free, downloading from a query operation could be slightly quicker | More complex tool (only slightly though), query operations are slow (can take ~100s to sort the entire table) |
Google makes the coalesce operation order-preserving | That changing the coalesce behaviour is easy and quick | No changes to tool | Assuming that Google will change the way their service works just for our benefit |
Google implements automatic table sorting for tables, and MtGox selects "Money_Trade__ ASC, Primary DESC" as the sorting order | That Google would implement an entirely new functionality | No changes to the tool, functionality could be useful for many people and other bigquery users | A lot to ask from Google, moreso than the last solution |