Skip to content

Commit bd7f93c

Browse files
committed
Minor improvements to readme.md.
1 parent c5ec2fb commit bd7f93c

File tree

1 file changed

+13
-62
lines changed

1 file changed

+13
-62
lines changed

readme.md

+13-62
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,21 @@ RubyDNS is a high-performance DNS server which can be easily integrated into oth
44

55
[![Development Status](https://github.com/socketry/rubydns/workflows/Test/badge.svg)](https://github.com/socketry/rubydns/actions?workflow=Test)
66

7-
[![RubyDNS Introduction](http://img.youtube.com/vi/B9ygq0xh3HQ/maxresdefault.jpg)](https://www.youtube.com/watch?v=B9ygq0xh3HQ&feature=youtu.be&hd=1 "RubyDNS Introduction")
8-
97
## Installation
108

11-
Add this line to your application's Gemfile:
12-
13-
gem 'rubydns'
14-
15-
And then execute:
16-
17-
$ bundle
9+
Add the gem to your project:
1810

19-
Or install it yourself as:
20-
21-
$ gem install rubydns
11+
~~~ bash
12+
$ bundle add rubydns
13+
~~~
2214

2315
## Usage
2416

25-
There are [lots of examples available](examples/README.md) in the `examples/` directory.
17+
There are examples in the `examples` directory which demonstrate how to use RubyDNS.
2618

27-
### Basic DNS Server
19+
### Simple DNS Server
2820

29-
Here is the code from `examples/basic-dns.rb`:
21+
This example demonstrates how to create a simple DNS server that responds to `test.local A` and forwards all other requests to the system default resolver.
3022

3123
``` ruby
3224
#!/usr/bin/env ruby
@@ -51,15 +43,6 @@ RubyDNS.run(endpoint) do
5143
end
5244
```
5345

54-
Start the server using `RUBYOPT=-w ./examples/basic-dns.rb`. You can then test it using dig:
55-
56-
$ dig @localhost -p 5300 test.local
57-
$ dig @localhost -p 5300 google.com
58-
59-
### File Handle Limitations
60-
61-
On some platforms (e.g. Mac OS X) the number of file descriptors is relatively low by default and should be increased by calling `ulimit -n 10000` before running tests or even before starting a server which expects a large number of concurrent incoming connections.
62-
6346
### Custom Servers
6447

6548
It is possible to create and integrate your own custom servers, however this functionality has now moved to [`Async::DNS::Server`](https://github.com/socketry/async-dns).
@@ -71,7 +54,7 @@ class MyServer < Async::DNS::Server
7154
end
7255
end
7356

74-
Async::Reactor.run do
57+
Async do
7558
task = MyServer.new.run
7659

7760
# ... do other things, e.g. run specs/tests
@@ -83,39 +66,15 @@ end
8366

8467
This is the best way to integrate with other projects.
8568

86-
## Performance
87-
88-
**Due to changes in the underlying code, there have been some very minor performance regressions. The numbers below will be updated in due course.**
89-
90-
We welcome additional benchmarks and feedback regarding RubyDNS performance. To check the current performance results, consult the [travis build job output](https://travis-ci.org/ioquatix/rubydns).
91-
92-
### Server
93-
94-
The performance is on the same magnitude as `bind9`. Some basic benchmarks resolving 1000 names concurrently, repeated 5 times, using `RubyDNS::Resolver` gives the following:
95-
96-
```
97-
user system total real
98-
RubyDNS::Server 4.280000 0.450000 4.730000 ( 4.854862)
99-
Bind9 4.970000 0.520000 5.490000 ( 5.541213)
100-
```
101-
102-
These benchmarks are included in the unit tests. To test bind9 performance, it must be installed and `which named` must return the executable.
103-
104-
### Resolver
105-
106-
The `RubyDNS::Resolver` is highly concurrent and can resolve individual names as fast as the built in `Resolv::DNS` resolver. Because the resolver is asynchronous, when dealing with multiple names, it can work more efficiently:
69+
### DNSSEC support
10770

108-
```
109-
user system total real
110-
RubyDNS::Resolver 0.020000 0.010000 0.030000 ( 0.030507)
111-
Resolv::DNS 0.070000 0.010000 0.080000 ( 1.465975)
112-
```
71+
DNSSEC is currently not supported and is [unlikely to be supported in the future](http://sockpuppet.org/blog/2015/01/15/against-dnssec/).
11372

114-
These benchmarks are included in the unit tests.
73+
## See Also
11574

116-
### DNSSEC support
75+
The majority of this gem is now implemented by `async-dns`.
11776

118-
DNSSEC is currently not supported and is [unlikely to be supported in the future](http://sockpuppet.org/blog/2015/01/15/against-dnssec/).
77+
- [async-dns](https://github.com/socketry/async-dns) — Asynchronous DNS resolver and server.
11978

12079
## Contributing
12180

@@ -134,11 +93,3 @@ In order to protect users of this project, we require all contributors to comply
13493
### Community Guidelines
13594

13695
This project is best served by a collaborative and respectful environment. Treat each other professionally, respect differing viewpoints, and engage constructively. Harassment, discrimination, or harmful behavior is not tolerated. Communicate clearly, listen actively, and support one another. If any issues arise, please inform the project maintainers.
137-
138-
## See Also
139-
140-
The majority of this gem is now implemented by `async-dns`.
141-
142-
- [async-io](https://github.com/socketry/async-io) — Asynchronous networking and sockets.
143-
- [async-dns](https://github.com/socketry/async-dns) — Asynchronous DNS resolver and server.
144-
- [async-rspec](https://github.com/socketry/async-rspec) — Shared contexts for running async specs.

0 commit comments

Comments
 (0)