Mark Slee | 254ce20 | 2007-05-16 02:21:06 +0000 | [diff] [blame] | 1 | Thrift Perl Software Library |
| 2 | |
Mark Slee | 8266443 | 2007-09-19 06:49:30 +0000 | [diff] [blame] | 3 | Author: T Jake Luciani (jake@3.rdrail.net) |
| 4 | Last Modified: 2007-Sep-18 |
Mark Slee | 254ce20 | 2007-05-16 02:21:06 +0000 | [diff] [blame] | 5 | |
| 6 | Thrift is distributed under the Thrift open source software license. |
| 7 | Please see the included LICENSE file. |
| 8 | |
| 9 | Using Thrift with Perl |
| 10 | ===================== |
| 11 | |
| 12 | Thrift requires Perl >= 5.6.0 |
| 13 | |
| 14 | Exceptions are thrown with die so be sure to wrap eval{} statments |
| 15 | around any code that contains exceptions. |
| 16 | |
| 17 | The 64bit Integers work only upto 2^42 on my machine :-? |
| 18 | Math::BigInt is probably needed. |
| 19 | |
Mark Slee | 254ce20 | 2007-05-16 02:21:06 +0000 | [diff] [blame] | 20 | Please see tutoral and test dirs for examples... |
| 21 | |
| 22 | Dependencies |
| 23 | ============ |
| 24 | |
Mark Slee | 8266443 | 2007-09-19 06:49:30 +0000 | [diff] [blame] | 25 | Bit::Vector - comes with modern perl installations. |
| 26 | Class::Accessor |
Mark Slee | 254ce20 | 2007-05-16 02:21:06 +0000 | [diff] [blame] | 27 | |