-
Notifications
You must be signed in to change notification settings - Fork 4
/
readme.txt
49 lines (32 loc) · 1.85 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
Additional Info
There is are a couple of projects to implement ICU as a NIF in Erlang. You can find them at:
https://github.com/beerriot/icu4e
https://github.com/freeakk/i18n
Release Notes V 2.0
Starling which was previously hosted at http://code.google.com/p/starling/ has been brought into the Hypernumbers repositories at GitHub at http://github.com/hypernumbers/starling
In this release multiple instances of the port driver can be loaded to provide to provided additional throughput.
The number of instances is determined by the environment variables in the starling.app file.
The environment variable 'poolsize' determines how many ports will be loaded and the environment variable 'group' determines the name of the pg2 group that the starling_server processes will be part of.
The pg2 group is a global group and starling can now be deployed as a multiserver capability.
********************************************************
Starling is a Unicode text processing library for Erlang.
It's based on ICU (http://icu-project.org/), which you need to have installed to use Starling.
`port install icu` with MacPorts on OSX
`apt-get install libicu38 libicu-dev` on Ubuntu
You also need to have Ruby and Rake installed (the build script uses Rake).
To compile, just run `rake` from Starling's root directory.
Once you've compiled Starling, start the Erlang shell with:
`erl -pa ~/path/to/starling/ebin`
You can then use Starling like this:
1> application:start(starling_app).
ok
2> S = ustring:new("hello").
<<0,104,0,101,0,108,0,108,0,111>>
3> S2 = ustring:upcase(S).
<<0,72,0,69,0,76,0,76,0,79>>
4> ustring:pr(S2).
"HELLO"
There's a couple of simple demos under demos/. You may also want to take a look at tests/.
Project's homepage: http://12monkeys.co.uk/starling
Google Code page: http://code.google.com/p/starling/
Hasan Veldstra <[email protected]>