1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00

README updates

This commit is contained in:
John Guo 2022-01-12 20:42:11 +08:00
parent 9486f6e7e9
commit c2f2ad7a28
2 changed files with 54 additions and 41 deletions

View File

@ -1,4 +1,7 @@
# GoFrame
<div align=center>
<img src="https://goframe.org/statics/image/gf-head-large.png" width="100"/>
</div>
[![Go Doc](https://godoc.org/github.com/gogf/gf?status.svg)](https://godoc.org/github.com/gogf/gf)
[![GoFrame CI](https://github.com/gogf/gf/actions/workflows/go.yml/badge.svg)](https://github.com/gogf/gf/actions/workflows/go.yml)
@ -7,10 +10,20 @@
[![Production Ready](https://img.shields.io/badge/production-ready-blue.svg)](https://github.com/gogf/gf)
[![License](https://img.shields.io/github/license/gogf/gf.svg?style=flat)](https://github.com/gogf/gf)
`GoFrame` is a modular, powerful, high-performance and enterprise-class application development framework of Golang.
> If you're a newbie to `Go`, you may consider `GoFrame` easy and great as `Laravel` in `PHP`, `SpringBoot` in `Java` or `Django` in `Python`.
# Features
- modular, loosely coupled design
- rich components, out-of-the-box
- simple and easy to use, detailed documentation
- interface designed components, with high scalability
- fully supported tracing and error stack feature
- specially developed and powerful ORM component
- robust engineering design specifications
- convenient development CLI tool provide
- OpenTelemetry observability features support
- OpenAPIV3 documentation generating, automatically
- much, much more...ready to explore?
# Installation
```
@ -31,24 +44,10 @@ golang version >= 1.15
<img src="https://goframe.org/download/attachments/1114119/arch.png"/>
</div>
# Packages
1. **Primary Package**
The `gf` repository maintains some basic and most commonly used packages, keeping it as lightweight and simple as possible.
1. **Community Package**
The community packages are contributed and maintained by community members, which are hosted in `gogf` organization. Some of the community packages are separated from the `gf` repository, which are not of common usage or are with heavy dependencies.
# Performance
The `Web` component performance of `GoFrame`, please refer to third-party project: https://github.com/the-benchmarker/web-frameworks
# Documentation
* 中文官网: [https://goframe.org](https://goframe.org/display/gf)
* Chinese Official Site(中文官网): [https://goframe.org](https://goframe.org/display/gf)
* GoDoc API: [https://pkg.go.dev/github.com/gogf/gf](https://pkg.go.dev/github.com/gogf/gf)

View File

@ -9,8 +9,10 @@ package ghash
// BKDRHash implements the classic BKDR hash algorithm for 32 bits.
func BKDRHash(str []byte) uint32 {
var seed uint32 = 131 // 31 131 1313 13131 131313 etc..
var hash uint32 = 0
var (
seed uint32 = 131 // 31 131 1313 13131 131313 etc..
hash uint32 = 0
)
for i := 0; i < len(str); i++ {
hash = hash*seed + uint32(str[i])
}
@ -19,8 +21,10 @@ func BKDRHash(str []byte) uint32 {
// BKDRHash64 implements the classic BKDR hash algorithm for 64 bits.
func BKDRHash64(str []byte) uint64 {
var seed uint64 = 131 // 31 131 1313 13131 131313 etc..
var hash uint64 = 0
var (
seed uint64 = 131 // 31 131 1313 13131 131313 etc..
hash uint64 = 0
)
for i := 0; i < len(str); i++ {
hash = hash*seed + uint64(str[i])
}
@ -49,9 +53,11 @@ func SDBMHash64(str []byte) uint64 {
// RSHash implements the classic RS hash algorithm for 32 bits.
func RSHash(str []byte) uint32 {
var b uint32 = 378551
var a uint32 = 63689
var hash uint32 = 0
var (
b uint32 = 378551
a uint32 = 63689
hash uint32 = 0
)
for i := 0; i < len(str); i++ {
hash = hash*a + uint32(str[i])
a *= b
@ -61,9 +67,11 @@ func RSHash(str []byte) uint32 {
// RSHash64 implements the classic RS hash algorithm for 64 bits.
func RSHash64(str []byte) uint64 {
var b uint64 = 378551
var a uint64 = 63689
var hash uint64 = 0
var (
b uint64 = 378551
a uint64 = 63689
hash uint64 = 0
)
for i := 0; i < len(str); i++ {
hash = hash*a + uint64(str[i])
a *= b
@ -91,12 +99,14 @@ func JSHash64(str []byte) uint64 {
// PJWHash implements the classic PJW hash algorithm for 32 bits.
func PJWHash(str []byte) uint32 {
var BitsInUnignedInt uint32 = 4 * 8
var ThreeQuarters uint32 = (BitsInUnignedInt * 3) / 4
var OneEighth uint32 = BitsInUnignedInt / 8
var HighBits uint32 = (0xFFFFFFFF) << (BitsInUnignedInt - OneEighth)
var hash uint32 = 0
var test uint32 = 0
var (
BitsInUnsignedInt uint32 = 4 * 8
ThreeQuarters uint32 = (BitsInUnsignedInt * 3) / 4
OneEighth uint32 = BitsInUnsignedInt / 8
HighBits uint32 = (0xFFFFFFFF) << (BitsInUnsignedInt - OneEighth)
hash uint32 = 0
test uint32 = 0
)
for i := 0; i < len(str); i++ {
hash = (hash << OneEighth) + uint32(str[i])
if test = hash & HighBits; test != 0 {
@ -108,12 +118,14 @@ func PJWHash(str []byte) uint32 {
// PJWHash64 implements the classic PJW hash algorithm for 64 bits.
func PJWHash64(str []byte) uint64 {
var BitsInUnignedInt uint64 = 4 * 8
var ThreeQuarters uint64 = (BitsInUnignedInt * 3) / 4
var OneEighth uint64 = BitsInUnignedInt / 8
var HighBits uint64 = (0xFFFFFFFFFFFFFFFF) << (BitsInUnignedInt - OneEighth)
var hash uint64 = 0
var test uint64 = 0
var (
BitsInUnsignedInt uint64 = 4 * 8
ThreeQuarters uint64 = (BitsInUnsignedInt * 3) / 4
OneEighth uint64 = BitsInUnsignedInt / 8
HighBits uint64 = (0xFFFFFFFFFFFFFFFF) << (BitsInUnsignedInt - OneEighth)
hash uint64 = 0
test uint64 = 0
)
for i := 0; i < len(str); i++ {
hash = (hash << OneEighth) + uint64(str[i])
if test = hash & HighBits; test != 0 {
@ -139,8 +151,10 @@ func ELFHash(str []byte) uint32 {
// ELFHash64 implements the classic ELF hash algorithm for 64 bits.
func ELFHash64(str []byte) uint64 {
var hash uint64 = 0
var x uint64 = 0
var (
hash uint64 = 0
x uint64 = 0
)
for i := 0; i < len(str); i++ {
hash = (hash << 4) + uint64(str[i])
if x = hash & 0xF000000000000000; x != 0 {