You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
26
18
27
-
### Basic DNS Server
19
+
### Simple DNS Server
28
20
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.
30
22
31
23
```ruby
32
24
#!/usr/bin/env ruby
@@ -51,15 +43,6 @@ RubyDNS.run(endpoint) do
51
43
end
52
44
```
53
45
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
-
63
46
### Custom Servers
64
47
65
48
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
71
54
end
72
55
end
73
56
74
-
Async::Reactor.rundo
57
+
Asyncdo
75
58
task =MyServer.new.run
76
59
77
60
# ... do other things, e.g. run specs/tests
@@ -83,39 +66,15 @@ end
83
66
84
67
This is the best way to integrate with other projects.
85
68
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:
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:
DNSSEC is currently not supported and is [unlikely to be supported in the future](http://sockpuppet.org/blog/2015/01/15/against-dnssec/).
113
72
114
-
These benchmarks are included in the unit tests.
73
+
## See Also
115
74
116
-
### DNSSEC support
75
+
The majority of this gem is now implemented by `async-dns`.
117
76
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.
119
78
120
79
## Contributing
121
80
@@ -134,11 +93,3 @@ In order to protect users of this project, we require all contributors to comply
134
93
### Community Guidelines
135
94
136
95
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