Skip to content

Commit 0ea82d7

Browse files
committed
save work
1 parent f5e22e6 commit 0ea82d7

14 files changed

+906
-3
lines changed

Diff for: archetypes/gh-pages.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "{{ replace .Name "-" " " | title }}"
3+
date: {{ .Date }}
4+
draft: true
5+
---
6+

Diff for: content/_index.md

-2
This file was deleted.

Diff for: content/about/_index.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: "About"
3+
date: 2020-12-27T22:09:37+01:00
4+
draft: false
5+
---
6+
This extension provides ways to interact with Apache Kafka.
7+
It uses [librdkafka](https://github.com/edenhill/librdkafka) for binding and was inspired by [php-rdkafka](https://github.com/arnaud-lb/php-rdkafka).

Diff for: content/consumer/consume.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ title: "consume"
33
date: 2020-12-27T22:09:37+01:00
44
draft: false
55
---
6-
asadf asfa sdfasfasf
6+
asdfasf sf as fsd

Diff for: content/installation/_index.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: "Installation"
3+
date: 2020-12-27T22:09:37+01:00
4+
draft: false
5+
---
6+
## Installation with PECL
7+
### Linux
8+
```bash
9+
sudo pecl install kafka
10+
```
11+
In your `php/conf.d` folder add a `kafka.ini` with the following:
12+
```ini
13+
extension=kafka.so
14+
```
15+
### Windows
16+
Download DLLs from PECL and put `librdkafka.dll` in the root PHP directory (same level as `php.exe`)
17+
and the `php_rdkfaka.dll` file in your PHP extension directory (`ext` by default).
18+
Add the following line to your `php.ini` file:
19+
```ini
20+
extension=php_kafka.dll
21+
```
23.7 KB
Loading
78.8 KB
Loading
10.2 KB
Loading

Diff for: themes/hugo-geekdoc/static/favicon/browserconfig.xml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<browserconfig>
3+
<msapplication>
4+
<tile>
5+
<square150x150logo src="/mstile-150x150.png"/>
6+
<TileColor>#ffffff</TileColor>
7+
</tile>
8+
</msapplication>
9+
</browserconfig>

Diff for: themes/hugo-geekdoc/static/favicon/favicon-16x16.png

1.29 KB
Loading

Diff for: themes/hugo-geekdoc/static/favicon/favicon-32x32.png

2.65 KB
Loading

Diff for: themes/hugo-geekdoc/static/favicon/favicon.ico

14.7 KB
Binary file not shown.
12.3 KB
Loading

Diff for: themes/hugo-geekdoc/static/favicon/safari-pinned-tab.svg

+862
Loading

0 commit comments

Comments
 (0)