File: doc.go

package info (click to toggle)
golang-github-tideland-golib 4.24.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,144 kB
  • sloc: makefile: 4
file content (17 lines) | stat: -rw-r--r-- 627 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Tideland Go Library - Map/Reduce
//
// Copyright (C) 2009-2017 Frank Mueller / Tideland / Oldenburg / Germany
//
// All rights reserved. Use of this source code is governed
// by the new BSD license.

// Package mapreduce of the Tideland Go Library implements the Map/Reduce
// algorithm for the processing and aggregation mass data.
//
// A type implementing the MapReducer interface has to be implemented
// and passed to the MapReduce() function. The type is responsible
// for the input, the mapping, the reducing and the consuming while
// the package provides the runtime environment for it.
package mapreduce

// EOF