Download the PHP package chobie/treasuredata-api-client without Composer
On this page you can find all versions of the php package chobie/treasuredata-api-client. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download chobie/treasuredata-api-client
More information about chobie/treasuredata-api-client
Files in chobie/treasuredata-api-client
Package treasuredata-api-client
Short Description TreasureData REST API client.
License Apache
Informations about the package treasuredata-api-client
Treasure Data API Client
MOTIVATION
There are several implementation but PHP does not have ROBUST Treasure Data REST API client. This Treasure Data API Client aims robust and provide useful features.
USAGE
composer.json
`
Example
`
KEEP IN MIND
Unfortunately, PHP is really poor about processing BIG Data as some reasons.
- PHP function is very slow. (enough to process web services. but big data requires really many function call)
- array implementation (HashTable) does not scale. php will re-alloc memories and iterating Big HashTable is really slow.
-
PHP curl implementation returns result as string directly. this will take big memory if job result is large.
- So, This lib use StreamSocketDriver as default driver. you can also use CurlDriver. but I don't recommend it as above problem.
So. I strongly recommend You process small result (at most under 1 million records) with this lib or downloading job result only.
Anyway, have fun with Treasure Data API and PHP!
LICENSE
Apache License